diff --git a/Cargo.lock b/Cargo.lock index ab562371506..bf38a3a47dd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -269,7 +269,7 @@ dependencies = [ [[package]] name = "cargo-hakari" -version = "0.9.14" +version = "0.9.15" dependencies = [ "camino", "cfg-if", @@ -679,7 +679,7 @@ checksum = "7e51694c5f8b91baf933e6429a3df4ff3e9f1160386d150790b97bef73337d1b" [[package]] name = "determinator" -version = "0.9.0" +version = "0.9.1" dependencies = [ "camino", "cfg-if", @@ -965,7 +965,7 @@ dependencies = [ [[package]] name = "guppy" -version = "0.14.2" +version = "0.14.3" dependencies = [ "camino", "cargo_metadata", @@ -1018,7 +1018,7 @@ dependencies = [ [[package]] name = "guppy-summaries" -version = "0.7.0" +version = "0.7.1" dependencies = [ "camino", "cfg-if", @@ -1059,7 +1059,7 @@ dependencies = [ [[package]] name = "hakari" -version = "0.10.1" +version = "0.10.2" dependencies = [ "atomicwrites", "bimap", @@ -2156,7 +2156,7 @@ checksum = "c02424087780c9b71cc96799eaeddff35af2bc513278cda5c99fc1f5d026d3c1" [[package]] name = "target-spec" -version = "1.1.0" +version = "1.2.0" dependencies = [ "cfg-expr", "guppy-workspace-hack", diff --git a/guppy-summaries/CHANGELOG.md b/guppy-summaries/CHANGELOG.md index c296ce31cb4..f80c927da3f 100644 --- a/guppy-summaries/CHANGELOG.md +++ b/guppy-summaries/CHANGELOG.md @@ -1,9 +1,10 @@ # Changelog -## Unreleased +## [0.7.1] - 2022-09-30 ### Changed +- Repository location update. - MSRV updated to Rust 1.58. ## [0.7.0] - 2022-03-14 @@ -90,6 +91,7 @@ This is a minor breaking change that should not affect most consumers. Initial release. +[0.7.1]: https://github.com/guppy-rs/guppy/releases/tag/guppy-summaries-0.7.1 [0.7.0]: https://github.com/guppy-rs/guppy/releases/tag/guppy-summaries-0.7.0 [0.6.1]: https://github.com/guppy-rs/guppy/releases/tag/guppy-summaries-0.6.1 [0.6.0]: https://github.com/guppy-rs/guppy/releases/tag/guppy-summaries-0.6.0 diff --git a/guppy-summaries/Cargo.toml b/guppy-summaries/Cargo.toml index f6de1c5e216..4f67028b487 100644 --- a/guppy-summaries/Cargo.toml +++ b/guppy-summaries/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "guppy-summaries" -version = "0.7.0" +version = "0.7.1" description = "Build summaries for Cargo, created by guppy." documentation = "https://docs.rs/guppy-summaries" repository = "https://github.com/guppy-rs/guppy" @@ -8,7 +8,12 @@ authors = ["Rain "] license = "MIT OR Apache-2.0" readme = "README.md" keywords = ["cargo", "dependencies", "guppy", "summaries"] -categories = ["config", "data-structures", "development-tools", "parser-implementations"] +categories = [ + "config", + "data-structures", + "development-tools", + "parser-implementations", +] edition = "2021" exclude = [ # Readme template that doesn't need to be included. diff --git a/guppy/CHANGELOG.md b/guppy/CHANGELOG.md index 331e986908a..9435bccf789 100644 --- a/guppy/CHANGELOG.md +++ b/guppy/CHANGELOG.md @@ -1,11 +1,14 @@ # Changelog -## Unreleased +## [0.14.3] - 2022-09-30 ### Changed +- Repository location update. - MSRV updated to Rust 1.58. +Thanks to [Carol Nichols](https://github.com/carols10cents) for her contributions to this release! + ## [0.14.2] - 2022-05-29 ### Fixed @@ -518,6 +521,7 @@ lazy_static = "0.2" ### Added - Initial release. +[0.14.3]: https://github.com/guppy-rs/guppy/releases/tag/guppy-0.14.3 [0.14.2]: https://github.com/guppy-rs/guppy/releases/tag/guppy-0.14.2 [0.14.1]: https://github.com/guppy-rs/guppy/releases/tag/guppy-0.14.1 [0.14.0]: https://github.com/guppy-rs/guppy/releases/tag/guppy-0.14.0 diff --git a/guppy/Cargo.toml b/guppy/Cargo.toml index 197297d705c..97b25944395 100644 --- a/guppy/Cargo.toml +++ b/guppy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "guppy" -version = "0.14.2" +version = "0.14.3" description = "Track and query Cargo dependency graphs." documentation = "https://docs.rs/guppy" repository = "https://github.com/guppy-rs/guppy" @@ -33,7 +33,7 @@ camino = "1.0.9" cargo_metadata = "0.14.2" cfg-if = "1.0.0" debug-ignore = "1.0.2" -guppy-summaries = { version = "0.7.0", path = "../guppy-summaries", optional = true } +guppy-summaries = { version = "0.7.1", path = "../guppy-summaries", optional = true } fixedbitset = { version = "0.4.1", default-features = false } nested = "0.1.1" indexmap = "1.9.1" @@ -49,7 +49,7 @@ serde = { version = "1.0.137", features = ["derive"] } serde_json = "1.0.81" smallvec = "1.8.0" static_assertions = "1.1.0" -target-spec = { version = "1.0.2", path = "../target-spec" } +target-spec = { version = "1.2.0", path = "../target-spec" } toml = { version = "0.5.9", optional = true, features = ["preserve_order"] } guppy-workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/target-spec/CHANGELOG.md b/target-spec/CHANGELOG.md index 38835ec03bd..f99bc0f700d 100644 --- a/target-spec/CHANGELOG.md +++ b/target-spec/CHANGELOG.md @@ -1,13 +1,15 @@ - # Changelog -## Unreleased +## [1.2.0] - 2022-09-30 ### Changed +- Repository location update. - Internal dependency updates. - MSRV updated to Rust 1.58. +Thanks to [Carol Nichols](https://github.com/carols10cents) for her contributions to this release! + ## [1.1.0] - 2022-08-30 ### Fixed @@ -175,6 +177,7 @@ This was mistakenly published and was yanked. ## [0.1.0] - 2020-03-20 - Initial release. +[1.2.0]: https://github.com/guppy-rs/guppy/releases/tag/target-spec-1.2.0 [1.1.0]: https://github.com/guppy-rs/guppy/releases/tag/target-spec-1.1.0 [1.0.2]: https://github.com/guppy-rs/guppy/releases/tag/target-spec-1.0.2 [1.0.1]: https://github.com/guppy-rs/guppy/releases/tag/target-spec-1.0.1 diff --git a/target-spec/Cargo.toml b/target-spec/Cargo.toml index adf92ef76df..47b6b1135e9 100644 --- a/target-spec/Cargo.toml +++ b/target-spec/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "target-spec" -version = "1.1.0" +version = "1.2.0" description = "Evaluate Cargo.toml target specifications" documentation = "https://docs.rs/target-spec" repository = "https://github.com/guppy-rs/guppy" diff --git a/target-spec/src/lib.rs b/target-spec/src/lib.rs index 226cf16e7ce..328c0fd5123 100644 --- a/target-spec/src/lib.rs +++ b/target-spec/src/lib.rs @@ -47,7 +47,7 @@ //! The minimum supported Rust version (MSRV) is: //! * For target-spec 1.0.x: **Rust 1.54**. //! * For target-spec 1.1.x: **Rust 1.56**. -//! * For the version on the main branch (currently unreleased): **Rust 1.58** +//! * For target-spec 1.2.x: **Rust 1.58**. //! //! Within the 1.x series, MSRV bumps will be accompanied by a minor version update. diff --git a/tools/cargo-hakari/CHANGELOG.md b/tools/cargo-hakari/CHANGELOG.md index fbb2f68476b..342a9b180c7 100644 --- a/tools/cargo-hakari/CHANGELOG.md +++ b/tools/cargo-hakari/CHANGELOG.md @@ -1,11 +1,14 @@ # Changelog -## Unreleased +## [0.9.15] - 2022-09-30 ### Changed +- Repository location update. - MSRV updated to Rust 1.58. +Thanks to [Carol Nichols](https://github.com/carols10cents) for her contributions to this release! + ## [0.9.14] - 2022-05-29 ### Changed @@ -128,6 +131,7 @@ This was tagged, but never released due to Initial release. +[0.9.15]: https://github.com/guppy-rs/guppy/releases/tag/cargo-hakari-0.9.15 [0.9.14]: https://github.com/guppy-rs/guppy/releases/tag/cargo-hakari-0.9.14 [0.9.13]: https://github.com/guppy-rs/guppy/releases/tag/cargo-hakari-0.9.13 [0.9.12]: https://github.com/guppy-rs/guppy/releases/tag/cargo-hakari-0.9.12 diff --git a/tools/cargo-hakari/Cargo.toml b/tools/cargo-hakari/Cargo.toml index d3392625293..2a58ac492b5 100644 --- a/tools/cargo-hakari/Cargo.toml +++ b/tools/cargo-hakari/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-hakari" -version = "0.9.14" +version = "0.9.15" description = "Manage workspace-hack packages to speed up builds in large workspaces." documentation = "https://docs.rs/cargo-hakari" edition = "2021" @@ -27,8 +27,8 @@ dialoguer = "0.10.1" duct = "0.13.5" enable-ansi-support = "0.1.2" env_logger = "0.9.1" -guppy = { version = "0.14.2", path = "../../guppy" } -hakari = { version = "0.10.0", path = "../hakari", features = ["cli-support"] } +guppy = { version = "0.14.3", path = "../../guppy" } +hakari = { version = "0.10.2", path = "../hakari", features = ["cli-support"] } log = "0.4.17" owo-colors = { version = "3.4.0", features = ["supports-colors"] } supports-color = "1.3.0" diff --git a/tools/determinator/CHANGELOG.md b/tools/determinator/CHANGELOG.md index a86f2a656b7..cddfbe148ca 100644 --- a/tools/determinator/CHANGELOG.md +++ b/tools/determinator/CHANGELOG.md @@ -1,11 +1,14 @@ # Changelog -## Unreleased +## [0.9.1] - 2022-09-30 ### Changed +- Repository location update. - MSRV updated to Rust 1.58. +Thanks to [Carol Nichols](https://github.com/carols10cents) for her contributions to this release! + ## [0.9.0] - 2022-03-14 ### Added @@ -96,6 +99,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.9.1]: https://github.com/guppy-rs/guppy/releases/tag/determinator-0.9.1 [0.9.0]: https://github.com/guppy-rs/guppy/releases/tag/determinator-0.9.0 [0.8.0]: https://github.com/guppy-rs/guppy/releases/tag/determinator-0.8.0 [0.7.0]: https://github.com/guppy-rs/guppy/releases/tag/determinator-0.7.0 diff --git a/tools/determinator/Cargo.toml b/tools/determinator/Cargo.toml index 3c83eaf4f77..62e7aa49260 100644 --- a/tools/determinator/Cargo.toml +++ b/tools/determinator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "determinator" -version = "0.9.0" +version = "0.9.1" description = "Figure out which packages changed between two commits to a workspace." documentation = "https://docs.rs/determinator" authors = ["Rain "] @@ -27,7 +27,7 @@ rust-version = "1.58" [dependencies] camino = "1.0.9" globset = "0.4.9" -guppy = { version = "0.14.0", path = "../../guppy", features = [ +guppy = { version = "0.14.3", path = "../../guppy", features = [ "rayon1", "summaries", ] } diff --git a/tools/hakari/CHANGELOG.md b/tools/hakari/CHANGELOG.md index 0860a9991dc..68a7325ba7e 100644 --- a/tools/hakari/CHANGELOG.md +++ b/tools/hakari/CHANGELOG.md @@ -1,11 +1,14 @@ # Changelog -## Unreleased +## [0.10.2] - 2022-09-30 ### Changed +- Repository location update. - MSRV updated to Rust 1.58. +Thanks to [Carol Nichols](https://github.com/carols10cents) for her contributions to this release! + ## [0.10.1] - 2022-05-29 ### Changed @@ -196,6 +199,8 @@ Internal updates for `cargo-hakari 0.9.8`. Initial release. +[0.10.2]: https://github.com/guppy-rs/guppy/releases/tag/hakari-0.10.2 +[0.10.1]: https://github.com/guppy-rs/guppy/releases/tag/hakari-0.10.1 [0.10.0]: https://github.com/guppy-rs/guppy/releases/tag/hakari-0.10.0 [0.9.0]: https://github.com/guppy-rs/guppy/releases/tag/hakari-0.9.0 [0.8.1]: https://github.com/guppy-rs/guppy/releases/tag/hakari-0.8.1 diff --git a/tools/hakari/Cargo.toml b/tools/hakari/Cargo.toml index f81b5c8945c..0990d69fc23 100644 --- a/tools/hakari/Cargo.toml +++ b/tools/hakari/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hakari" -version = "0.10.1" +version = "0.10.2" description = "Manage workspace-hack packages that do feature unification inside workspaces." documentation = "https://docs.rs/hakari" edition = "2021" @@ -28,7 +28,7 @@ camino = "1.0.9" cfg-if = "1.0.0" debug-ignore = "1.0.2" diffy = "0.3.0" -guppy = { version = "0.14.2", path = "../../guppy", features = ["rayon1"] } +guppy = { version = "0.14.3", path = "../../guppy", features = ["rayon1"] } include_dir = { version = "0.7.2", features = ["glob"], optional = true } indenter = "0.3.3" itertools = "0.10.3"