diff --git a/CHANGELOG.md b/CHANGELOG.md index c2c7b1e..34c23a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +## [0.16.10] - 2024-04-12 ### Fixed - [PR#83](https://github.com/EmbarkStudios/krates/pull/83) resolved [#82](https://github.com/EmbarkStudios/krates/issues/82) by properly handling `cfg()` specific dependencies for the same crate with different features enabled. - [PR#83](https://github.com/EmbarkStudios/krates/pull/83) fixed an issue where `cfg(any())` crates would be pulled into the graph erroneously if not performing target filtering. @@ -204,7 +205,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial implementation -[Unreleased]: https://github.com/EmbarkStudios/krates/compare/0.16.9...HEAD +[Unreleased]: https://github.com/EmbarkStudios/krates/compare/0.16.10...HEAD +[0.16.10]: https://github.com/EmbarkStudios/krates/compare/0.16.9...0.16.10 [0.16.9]: https://github.com/EmbarkStudios/krates/compare/0.16.8...0.16.9 [0.16.8]: https://github.com/EmbarkStudios/krates/compare/0.16.7...0.16.8 [0.16.7]: https://github.com/EmbarkStudios/krates/compare/0.16.6...0.16.7 diff --git a/Cargo.lock b/Cargo.lock index 312f63f..7017852 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -555,7 +555,7 @@ dependencies = [ [[package]] name = "krates" -version = "0.16.9" +version = "0.16.10" dependencies = [ "cargo-platform", "cargo_metadata", diff --git a/Cargo.toml b/Cargo.toml index 6270a2c..d80ffa7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "krates" -version = "0.16.9" +version = "0.16.10" description = "Create graphs of crates gathered from cargo metadata" authors = [ "Embark ",