diff --git a/CHANGELOG.md b/CHANGELOG.md index c2ebc6337..f234d1f66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## 0.6.0 + +FEATURES +- Replaced `curl` with `reqwest` + +BREAKING CHANGES: +- `url` (removed) and `chrono` crates are no longer re-exported + +OTHER: +- Removed `log` crate +- `error-chain` updated to `0.11` + ## 0.5.0 FEATURES diff --git a/Cargo.toml b/Cargo.toml index 40ca2eb66..fb1368e49 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT/Apache-2.0" name = "slack-hook" readme = "README.md" repository = "https://github.com/frostly/rust-slack" -version = "0.5.0" +version = "0.6.0" [dependencies] chrono = "0.4" diff --git a/README.md b/README.md index eee84182e..0ce0d015c 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -slack-hook = "0.4" +slack-hook = "0.6" ``` Add the crate to your existing project: