From 1d56b120cdb943f216c706c3257befbb37644bad Mon Sep 17 00:00:00 2001 From: Matt Jones Date: Mon, 8 May 2017 19:55:56 -0400 Subject: [PATCH] Release 0.16.2 --- CHANGELOG.md | 6 +++++- Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c833f03b..5e423936 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ -# 0.16.1 +# 0.16.2 +* This release adds a new top-level function: `default_client()` + * This function can be used by users to get a default client that implements `SlackWebRequestSender` so they don't have to pull in `reqwest` and version match in order to send requests. + * Thanks to @bwasty for adding this in #42! +# 0.16.1 * This release works around a Slack API bug causing deserialization issues * Thanks to @dten for implementing the fix in #39! diff --git a/Cargo.toml b/Cargo.toml index 6c21b0b9..a66505c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ documentation = "https://docs.rs/slack_api" license = "Apache-2.0" name = "slack_api" repository = "https://github.com/slack-rs/slack-rs-api.git" -version = "0.16.1" +version = "0.16.2" [dependencies] serde = "0.9.0"