From ffd76b84dba7ed403a20fd99679d9627422d5371 Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Thu, 6 Oct 2022 16:48:59 +0200 Subject: [PATCH] Release 0.12.0 --- CHANGELOG.md | 4 +++- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b9dd13..500e4dc 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.12.0] - 2022-10-06 ### Added - [PR#42](https://github.com/EmbarkStudios/krates/pull/42) added support for features, adding nodes for each unique future, and linking edges between dependencies and features themselves. This (hopefully) properly takes into account the existing ways of pruning the graph via targets, exclusions etc. It also allows the retrieval of that final feature set via `Krates::get_enabled_features`. @@ -92,7 +93,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.11.0...HEAD +[Unreleased]: https://github.com/EmbarkStudios/krates/compare/0.12.0...HEAD +[0.12.0]: https://github.com/EmbarkStudios/krates/compare/0.11.0...0.12.0 [0.11.0]: https://github.com/EmbarkStudios/krates/compare/0.10.1...0.11.0 [0.10.1]: https://github.com/EmbarkStudios/krates/compare/0.10.0...0.10.1 [0.10.0]: https://github.com/EmbarkStudios/krates/compare/0.9.0...0.10.0 diff --git a/Cargo.toml b/Cargo.toml index 6bad5b6..b33f4ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "krates" -version = "0.11.0" +version = "0.12.0" description = "Create graphs of crates gathered from cargo metadata" authors = [ "Embark ",