diff --git a/CHANGELOG.md b/CHANGELOG.md index 4347875..db4bf30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.6.0] — 2022-11-17 + +- Add `ImplTrait::support_path_args`, `ImplArgs::path_args` (#26) +- Path args: support `Deref` (#26) + ## [0.5.2] — 2022-10-06 - Add `singleton!` macro (#25) diff --git a/Cargo.toml b/Cargo.toml index 209008f..026941f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "impl-tools" -version = "0.5.2" +version = "0.6.0" authors = ["Diggory Hardy "] edition = "2021" license = "MIT/Apache-2.0" @@ -21,7 +21,7 @@ proc-macro-error = "1.0" version = "1.0.14" [dependencies.impl-tools-lib] -version = "0.5.2" +version = "0.6.0" path = "lib" [dev-dependencies] diff --git a/lib/Cargo.toml b/lib/Cargo.toml index ee51f35..3090139 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "impl-tools-lib" -version = "0.5.2" +version = "0.6.0" authors = ["Diggory Hardy "] edition = "2021" license = "MIT/Apache-2.0"