diff --git a/CHANGELOG.md b/CHANGELOG.md index 62e59fe..2015446 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,10 +6,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -[Unreleased]: https://github.com/fastobo/fastobo/compare/v0.1.0...HEAD +[Unreleased]: https://github.com/fastobo/fastobo/compare/v0.1.1...HEAD +## [v0.1.1] - 2020-07-22 +[v0.1.1]: https://github.com/fastobo/fastobo/compare/v0.1.0...v0.1.1 +### Added +- Support for generic arguments in trait definition. +- Implementation of `#[blanket(derive(Rc))]` +### Fixed +- Error messages of `#[blanket(derive(Mut))]` referring `Ref` erroneously. +- Implementation of `fn(self)` methods when deriving for `Box`. +### Removed +- Unused `strum` dependency. ## [v0.1.0] - 2020-07-21 [v0.1.0]: https://github.com/fastobo/fastobo/compare/3e6065c9...v0.1.0 - Initial release. diff --git a/Cargo.toml b/Cargo.toml index 580a5d4..c1d8599 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blanket" -version = "0.1.0" +version = "0.1.1" authors = ["Martin Larralde "] edition = "2018" license = "MIT"