diff --git a/CHANGELOG.md b/CHANGELOG.md index f194670..2384c28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,27 +6,51 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -[Unreleased]: https://github.com/fastobo/fastobo/compare/v0.1.2...HEAD + +[Unreleased]: https://github.com/fastobo/fastobo/compare/v0.1.3...HEAD + +## [v0.1.3] - 2020-10-13 + +[v0.1.3]: https://github.com/fastobo/fastobo/compare/v0.1.2...v0.1.3 + +### Fixed + +- Handling of where clauses for traits with generic parameters, + by @alexanderlinne ([#1](https://github.com/althonos/blanket/pull/1)). + ## [v0.1.2] - 2020-07-22 + [v0.1.2]: https://github.com/fastobo/fastobo/compare/v0.1.1...v0.1.2 + ### Changed + - `syn` now only compiles with [`full`](https://docs.rs/syn/latest/syn/#optional-features) feature in release mode. + ### Removed - Unused `darling` dependency. + ## [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 f794d01..39bfbca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blanket" -version = "0.1.2" +version = "0.1.3" authors = ["Martin Larralde "] edition = "2018" license = "MIT" diff --git a/README.md b/README.md index ba92196..7e6d941 100644 --- a/README.md +++ b/README.md @@ -136,8 +136,8 @@ trait Visitor { ## 📝 To-Do --Delegation of default method to external functions. --Support for traits with generic arguments. +- ✓ Delegation of default method to external functions. +- ✓ Support for traits with generic arguments. - ✓ `#[derive(Ref)]` - ✓ `#[derive(Mut)]` - ✓ `#[derive(Box)]`