From dc6dcc151821e787ac02379bcd0319b26c962f55 Mon Sep 17 00:00:00 2001 From: Rain Date: Tue, 23 Feb 2021 17:05:28 -0800 Subject: [PATCH] prepare for release --- Cargo.lock | 10 +++++----- cargo-guppy/Cargo.toml | 2 +- guppy-summaries/CHANGELOG.md | 3 ++- guppy-summaries/Cargo.toml | 2 +- guppy/CHANGELOG.md | 11 ++++++----- guppy/Cargo.toml | 6 +++--- target-spec/CHANGELOG.md | 7 ++++--- target-spec/Cargo.toml | 2 +- tools/determinator/CHANGELOG.md | 3 ++- tools/determinator/Cargo.toml | 4 ++-- tools/hakari/CHANGELOG.md | 3 ++- tools/hakari/Cargo.toml | 4 ++-- 12 files changed, 31 insertions(+), 26 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 02a1267362e..2a001929804 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -578,7 +578,7 @@ dependencies = [ [[package]] name = "determinator" -version = "0.2.1" +version = "0.3.0" dependencies = [ "camino", "cfg-if 1.0.0", @@ -831,7 +831,7 @@ dependencies = [ [[package]] name = "guppy" -version = "0.7.2" +version = "0.8.0" dependencies = [ "camino", "cargo_metadata", @@ -877,7 +877,7 @@ dependencies = [ [[package]] name = "guppy-summaries" -version = "0.3.2" +version = "0.4.0" dependencies = [ "camino", "cfg-if 1.0.0", @@ -891,7 +891,7 @@ dependencies = [ [[package]] name = "hakari" -version = "0.1.1" +version = "0.2.0" dependencies = [ "atomicwrites", "camino", @@ -1973,7 +1973,7 @@ dependencies = [ [[package]] name = "target-spec" -version = "0.6.1" +version = "0.7.0" dependencies = [ "cfg-expr", "proptest", diff --git a/cargo-guppy/Cargo.toml b/cargo-guppy/Cargo.toml index 0beb7dbf9ea..6eac7c66624 100644 --- a/cargo-guppy/Cargo.toml +++ b/cargo-guppy/Cargo.toml @@ -10,7 +10,7 @@ anyhow = "1.0.38" camino = "1.0.0" clap = "2.33.3" dialoguer = "0.7.1" -guppy = { version = "0.7.1", path = "../guppy", features = ["summaries"] } +guppy = { version = "0.8.0", path = "../guppy", features = ["summaries"] } guppy-cmdlib = { path = "../guppy-cmdlib" } itertools = "0.10.0" pathdiff = "0.2.0" diff --git a/guppy-summaries/CHANGELOG.md b/guppy-summaries/CHANGELOG.md index 0bb8960002c..dfc6e8d2221 100644 --- a/guppy-summaries/CHANGELOG.md +++ b/guppy-summaries/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## [0.4.0] - 2021-02-23 ### Changed @@ -37,6 +37,7 @@ Initial release. +[0.4.0]: https://github.com/facebookincubator/cargo-guppy/releases/tag/guppy-summaries-0.4.0 [0.3.2]: https://github.com/facebookincubator/cargo-guppy/releases/tag/guppy-summaries-0.3.2 [0.3.1]: https://github.com/facebookincubator/cargo-guppy/releases/tag/guppy-summaries-0.3.1 [0.3.0]: https://github.com/facebookincubator/cargo-guppy/releases/tag/guppy-summaries-0.3.0 diff --git a/guppy-summaries/Cargo.toml b/guppy-summaries/Cargo.toml index bac4052bfe4..853bb134b6c 100644 --- a/guppy-summaries/Cargo.toml +++ b/guppy-summaries/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "guppy-summaries" -version = "0.3.2" +version = "0.4.0" description = "Build summaries for Cargo, created by guppy." documentation = "https://docs.rs/guppy-summaries" repository = "https://github.com/facebookincubator/cargo-guppy" diff --git a/guppy/CHANGELOG.md b/guppy/CHANGELOG.md index 98f6b6570cf..6d276c99e1e 100644 --- a/guppy/CHANGELOG.md +++ b/guppy/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## [0.8.0] - 2021-02-23 ### Changed @@ -9,13 +9,13 @@ - Public dependency version bumps: - `proptest` updated to version 1 and the corresponding feature renamed to `proptest1`. -## [0.7.2] - 2020-02-15 +## [0.7.2] - 2021-02-15 ### Fixed - Restored compatibility with Rust 1.48. (1.48 is the MSRV, and is now tested in CI.) -## [0.7.1] - 2020-02-14 +## [0.7.1] - 2021-02-14 ### Changed @@ -24,7 +24,7 @@ Foo, then Foo is returned before Bar. (This is not a breaking change because it is an additional constraint on guppy itself, not on its consumers.) -## [0.7.0] - 2020-02-03 +## [0.7.0] - 2021-02-03 ### Added @@ -55,7 +55,7 @@ * `semver` updated to 0.11. * `target-spec` updated to 0.6. -## [0.6.3] - 2020-01-11 +## [0.6.3] - 2021-01-11 ### Fixed @@ -338,6 +338,7 @@ lazy_static = "0.2" ### Added - Initial release. +[0.8.0]: https://github.com/facebookincubator/cargo-guppy/releases/tag/guppy-0.8.0 [0.7.2]: https://github.com/facebookincubator/cargo-guppy/releases/tag/guppy-0.7.2 [0.7.1]: https://github.com/facebookincubator/cargo-guppy/releases/tag/guppy-0.7.1 [0.7.0]: https://github.com/facebookincubator/cargo-guppy/releases/tag/guppy-0.7.0 diff --git a/guppy/Cargo.toml b/guppy/Cargo.toml index 36af577e881..6f7598a8b17 100644 --- a/guppy/Cargo.toml +++ b/guppy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "guppy" -version = "0.7.2" +version = "0.8.0" description = "Track and query Cargo dependency graphs." documentation = "https://docs.rs/guppy" repository = "https://github.com/facebookincubator/cargo-guppy" @@ -34,7 +34,7 @@ maintenance = { status = "actively-developed" } [dependencies] camino = "1.0.0" cargo_metadata = "0.12.3" -guppy-summaries = { version = "0.3.2", path = "../guppy-summaries", optional = true } +guppy-summaries = { version = "0.4.0", path = "../guppy-summaries", optional = true } fixedbitset = { version = "0.2.0", default-features = false } nested = "0.1.1" indexmap = "1.6.1" @@ -49,7 +49,7 @@ semver = "0.11.0" serde = { version = "1.0.123", features = ["derive"] } serde_json = "1.0.62" supercow = "0.1.0" -target-spec = { version = "0.6.1", path = "../target-spec" } +target-spec = { version = "0.7.0", path = "../target-spec" } [dev-dependencies] fixtures = { path = "../fixtures" } diff --git a/target-spec/CHANGELOG.md b/target-spec/CHANGELOG.md index 9fdf94e3b49..f9e06b2730e 100644 --- a/target-spec/CHANGELOG.md +++ b/target-spec/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## [0.7.0] - 2021-02-23 ### Changed @@ -8,14 +8,14 @@ - `cfg-expr` updated to 0.7.1. - `proptest` updated to version 1 and the corresponding feature renamed to `proptest1`. -## [0.6.1] - 2020-02-14 +## [0.6.1] - 2021-02-14 ### Changed - `cfg-expr` version requirement relaxed: 0.6 through 0.7 are now supported. There are no API changes between the two versions. -## [0.6.0] - 2020-02-03 +## [0.6.0] - 2021-02-03 ### Added @@ -100,6 +100,7 @@ This was mistakenly published and was yanked. ## [0.1.0] - 2020-03-20 - Initial release. +[0.7.0]: https://github.com/facebookincubator/cargo-guppy/releases/tag/target-spec-0.7.0 [0.6.1]: https://github.com/facebookincubator/cargo-guppy/releases/tag/target-spec-0.6.1 [0.6.0]: https://github.com/facebookincubator/cargo-guppy/releases/tag/target-spec-0.6.0 [0.5.0]: https://github.com/facebookincubator/cargo-guppy/releases/tag/target-spec-0.5.0 diff --git a/target-spec/Cargo.toml b/target-spec/Cargo.toml index 063886a7265..3ceb7f78748 100644 --- a/target-spec/Cargo.toml +++ b/target-spec/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "target-spec" -version = "0.6.1" +version = "0.7.0" description = "Evaluate Cargo.toml target specifications" documentation = "https://docs.rs/target-spec" repository = "https://github.com/facebookincubator/cargo-guppy" diff --git a/tools/determinator/CHANGELOG.md b/tools/determinator/CHANGELOG.md index 6d4e84e983f..00eeb86c31d 100644 --- a/tools/determinator/CHANGELOG.md +++ b/tools/determinator/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## [0.3.0] - 2021-02-23 ### Changed @@ -37,6 +37,7 @@ Initial release. * Path-based and package-based custom rules, including a default set of rules for files like `rust-toolchain` and `Cargo.lock`. * A `Paths0` wrapper to make it easier to retrieve changes from source control. +[0.3.0]: https://github.com/facebookincubator/cargo-guppy/releases/tag/determinator-0.3.0 [0.2.1]: https://github.com/facebookincubator/cargo-guppy/releases/tag/determinator-0.2.1 [0.2.0]: https://github.com/facebookincubator/cargo-guppy/releases/tag/determinator-0.2.0 [0.1.1]: https://github.com/facebookincubator/cargo-guppy/releases/tag/determinator-0.1.1 diff --git a/tools/determinator/Cargo.toml b/tools/determinator/Cargo.toml index 59e86ae42ee..51739cd5613 100644 --- a/tools/determinator/Cargo.toml +++ b/tools/determinator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "determinator" -version = "0.2.1" +version = "0.3.0" description = "Figure out which packages changed between two commits to a workspace." documentation = "https://docs.rs/determinator" authors = ["Rain "] @@ -29,7 +29,7 @@ include = [ [dependencies] camino = "1.0.0" globset = "0.4.6" -guppy = { version = "0.7.1", path = "../../guppy", features = ["rayon1", "summaries"] } +guppy = { version = "0.8.0", path = "../../guppy", features = ["rayon1", "summaries"] } itertools = "0.10" once_cell = "1.6.0" petgraph = { version = "0.5", default-features = false, features = ["graphmap"] } diff --git a/tools/hakari/CHANGELOG.md b/tools/hakari/CHANGELOG.md index 099cb219aa9..2d6c109707b 100644 --- a/tools/hakari/CHANGELOG.md +++ b/tools/hakari/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## [0.2.0] - 2021-02-23 ### Changed @@ -24,5 +24,6 @@ Initial release. +[0.2.0]: https://github.com/facebookincubator/cargo-guppy/releases/tag/hakari-0.2.0 [0.1.1]: https://github.com/facebookincubator/cargo-guppy/releases/tag/hakari-0.1.1 [0.1.0]: https://github.com/facebookincubator/cargo-guppy/releases/tag/hakari-0.1.0 diff --git a/tools/hakari/Cargo.toml b/tools/hakari/Cargo.toml index 49c530bf3de..c23af947060 100644 --- a/tools/hakari/Cargo.toml +++ b/tools/hakari/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hakari" -version = "0.1.1" +version = "0.2.0" description = "Manage workspace-hack packages that do feature unification inside workspaces." documentation = "https://docs.rs/determinator" authors = ["Rain "] @@ -27,7 +27,7 @@ atomicwrites = "0.2.5" camino = "1.0.0" cfg-if = "1.0.0" diffy = "0.2.1" -guppy = { version = "0.7.1", path = "../../guppy", features = ["rayon1"] } +guppy = { version = "0.8.0", path = "../../guppy", features = ["rayon1"] } pathdiff = "0.2.0" proptest = { version = "1.0.0", optional = true } proptest-derive = { version = "0.3.0", optional = true }