From b3663cb8085cdc1f9bd395d56b865f8648c8b169 Mon Sep 17 00:00:00 2001 From: Martin Larralde Date: Sat, 5 Jun 2021 13:37:04 +0200 Subject: [PATCH] Release v0.2.0 --- CHANGELOG.md | 14 +++++++++++++- Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d46a65a..8f32781 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -[Unreleased]: https://github.com/althonos/blanket/compare/v0.1.5...HEAD +[Unreleased]: https://github.com/althonos/blanket/compare/v0.2.0...HEAD + + +## [v0.2.0] - 2021-05-06 + +[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)). + +### Fixed +- Missing features for the `syn` crate preventing the crate to compile without leaking dev-dependencies ([#5](https://github.com/althonos/blanket/pull/5)). ## [v0.1.5] - 2021-05-31 diff --git a/Cargo.toml b/Cargo.toml index e2d870d..4e6516b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blanket" -version = "0.1.5" +version = "0.2.0" authors = ["Martin Larralde "] edition = "2018" resolver = "2"