diff --git a/CHANGELOG.md b/CHANGELOG.md index d558354..81e2f57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.1.2] - 2019-04-21 + +### Added + +- `Error` gained a `map` method that lets you transform the error in the + `Error::Other` variant into a different type. + +- `Error` now implements the `From` trait. + ## [v0.1.1] - 2018-01-10 ### Fixed @@ -17,5 +26,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/). Initial release -[Unreleased]: https://github.com/japaric/nb/compare/v0.1.1...HEAD +[Unreleased]: https://github.com/japaric/nb/compare/v0.1.2...HEAD +[v0.1.2]: https://github.com/japaric/nb/compare/v0.1.1...v0.1.2 [v0.1.1]: https://github.com/japaric/nb/compare/v0.1.0...v0.1.1 diff --git a/Cargo.toml b/Cargo.toml index 7aad001..7f06838 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ keywords = ["await", "futures", "IO"] license = "MIT OR Apache-2.0" name = "nb" repository = "https://github.com/japaric/nb" -version = "0.1.1" +version = "0.1.2" [features] unstable = []