Skip to content

Commit

Permalink
[meta] prepare releases
Browse files Browse the repository at this point in the history
  • Loading branch information
sunshowers committed Sep 30, 2022
1 parent 80d528e commit 5b4bd59
Show file tree
Hide file tree
Showing 14 changed files with 54 additions and 27 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion guppy-summaries/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
9 changes: 7 additions & 2 deletions guppy-summaries/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
[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"
authors = ["Rain <rain1@fb.com>"]
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.
Expand Down
6 changes: 5 additions & 1 deletion guppy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions guppy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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"
Expand All @@ -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" }

Expand Down
7 changes: 5 additions & 2 deletions target-spec/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion target-spec/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion target-spec/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
6 changes: 5 additions & 1 deletion tools/cargo-hakari/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions tools/cargo-hakari/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"
Expand Down
6 changes: 5 additions & 1 deletion tools/determinator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions tools/determinator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <rain1@fb.com>"]
Expand All @@ -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",
] }
Expand Down
7 changes: 6 additions & 1 deletion tools/hakari/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions tools/hakari/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 5b4bd59

Please sign in to comment.