diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f32781..bc2563a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -[Unreleased]: https://github.com/althonos/blanket/compare/v0.2.0...HEAD +[Unreleased]: https://github.com/althonos/blanket/compare/v0.3.0...HEAD + + +## [v0.3.0] - 2023-06-19 + +[v0.3.0]: https://github.com/althonos/blanket/compare/v0.2.0...v0.3.0 + +### Fixed +- `blanket` macro failing to process types with generic arguments and associated types ([#8](https://github.com/althonos/blanket/issues/8), by [@JustinLovinger](https://github.com/JustinLovinger)). + +### Changed +- Updated `syn` dependency to `v2.0`. +- `#[blanket(default = ...)]` now also accepts a path instead of a string literal. + ## [v0.2.0] - 2021-05-06 @@ -15,8 +28,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. [v0.2.0]: https://github.com/althonos/blanket/compare/v0.1.5...v0.2.0 ### Added -- Implementation for `#[blanket(derive(Arc))]` ([#4](https://github.com/althonos/blanket/pull/4)) -- Support for associated type in derived traits ([#6](https://github.com/althonos/blanket/pull/6)). +- Implementation for `#[blanket(derive(Arc))]` ([#4](https://github.com/althonos/blanket/pull/4), by [@najamelan](https://github.com/najamelan)) +- Support for associated type in derived traits ([#6](https://github.com/althonos/blanket/pull/6), by [@najamelan](https://github.com/najamelan)). ### Fixed - Missing features for the `syn` crate preventing the crate to compile without leaking dev-dependencies ([#5](https://github.com/althonos/blanket/pull/5)). diff --git a/Cargo.toml b/Cargo.toml index 434be26..1d474fe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blanket" -version = "0.2.0" +version = "0.3.0" authors = ["Martin Larralde "] edition = "2018" resolver = "2" diff --git a/README.md b/README.md index 42817a9..83a59a4 100644 --- a/README.md +++ b/README.md @@ -155,7 +155,7 @@ trait Visitor { The following people contributed to the project: - [Alexander Linne](https://github.com/alexanderlinne) - [Naja Melan](https://github.com/najamelan) - +- [Justin Lovinger](https://github.com/JustinLovinger) ## 📋 Changelog