Skip to content
This repository has been archived by the owner on Sep 28, 2022. It is now read-only.

Commit

Permalink
[meta] prepare for releases
Browse files Browse the repository at this point in the history
  • Loading branch information
sunshowers committed May 29, 2022
1 parent 69b42d8 commit 88681d7
Show file tree
Hide file tree
Showing 9 changed files with 41 additions and 13 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

13 changes: 13 additions & 0 deletions guppy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [0.14.2] - 2022-05-29

### Fixed

- On Windows, guppy now behaves correctly when a path dependency is on a different drive from the workspace ([#642]).

[#642]: https://github.com/facebookincubator/cargo-guppy/issues/642

### Changed

- Internal dependency updates.

## [0.14.1] - 2022-03-18

### Added
Expand Down Expand Up @@ -500,6 +512,7 @@ lazy_static = "0.2"
### Added
- Initial release.

[0.14.2]: https://github.com/facebookincubator/cargo-guppy/releases/tag/guppy-0.14.2
[0.14.1]: https://github.com/facebookincubator/cargo-guppy/releases/tag/guppy-0.14.1
[0.14.0]: https://github.com/facebookincubator/cargo-guppy/releases/tag/guppy-0.14.0
[0.13.0]: https://github.com/facebookincubator/cargo-guppy/releases/tag/guppy-0.13.0
Expand Down
4 changes: 2 additions & 2 deletions guppy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "guppy"
version = "0.14.1"
version = "0.14.2"
description = "Track and query Cargo dependency graphs."
documentation = "https://docs.rs/guppy"
repository = "https://github.com/facebookincubator/cargo-guppy"
Expand Down Expand Up @@ -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.0", path = "../target-spec" }
target-spec = { version = "1.0.2", path = "../target-spec" }
toml = { version = "0.5.9", optional = true, features = ["preserve_order"] }
guppy-workspace-hack = { version = "0.1", path = "../workspace-hack" }

Expand Down
4 changes: 3 additions & 1 deletion target-spec/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@

# Changelog

## Unreleased
## [1.0.2] - 2022-05-29

### Changed

- Internal dependency updates.
- MSRV updated to Rust 1.56.

## [1.0.1] - 2022-02-07
Expand Down Expand Up @@ -160,6 +161,7 @@ This was mistakenly published and was yanked.
## [0.1.0] - 2020-03-20
- Initial release.

[1.0.2]: https://github.com/facebookincubator/cargo-guppy/releases/tag/target-spec-1.0.2
[1.0.1]: https://github.com/facebookincubator/cargo-guppy/releases/tag/target-spec-1.0.1
[1.0.0]: https://github.com/facebookincubator/cargo-guppy/releases/tag/target-spec-1.0.0
[0.9.0]: https://github.com/facebookincubator/cargo-guppy/releases/tag/target-spec-0.9.0
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.0.1"
version = "1.0.2"
description = "Evaluate Cargo.toml target specifications"
documentation = "https://docs.rs/target-spec"
repository = "https://github.com/facebookincubator/cargo-guppy"
Expand Down
7 changes: 7 additions & 0 deletions tools/cargo-hakari/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.9.14] - 2022-05-29

### Changed

- Dependency updates: in particular, guppy updated to 0.14.2.

## [0.9.13] - 2022-03-14

### Changed
Expand Down Expand Up @@ -116,6 +122,7 @@ This was tagged, but never released due to

Initial release.

[0.9.14]: https://github.com/facebookincubator/cargo-guppy/releases/tag/cargo-hakari-0.9.14
[0.9.13]: https://github.com/facebookincubator/cargo-guppy/releases/tag/cargo-hakari-0.9.13
[0.9.12]: https://github.com/facebookincubator/cargo-guppy/releases/tag/cargo-hakari-0.9.12
[0.9.11]: https://github.com/facebookincubator/cargo-guppy/releases/tag/cargo-hakari-0.9.11
Expand Down
4 changes: 2 additions & 2 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.13"
version = "0.9.14"
description = "Manage workspace-hack packages to speed up builds in large workspaces."
documentation = "https://docs.rs/cargo-hakari"
edition = "2021"
Expand All @@ -27,7 +27,7 @@ dialoguer = "0.10.1"
duct = "0.13.5"
enable-ansi-support = "0.1.2"
env_logger = "0.9.0"
guppy = { version = "0.14.0", path = "../../guppy" }
guppy = { version = "0.14.2", path = "../../guppy" }
hakari = { version = "0.10.0", path = "../hakari", features = ["cli-support"] }
log = "0.4.17"
owo-colors = { version = "3.4.0", features = ["supports-colors"] }
Expand Down
6 changes: 6 additions & 0 deletions tools/hakari/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.10.1] - 2022-05-29

### Changed

- Dependency updates: in particular, guppy updated to 0.14.2.

## [0.10.0] - 2022-03-14

### Added
Expand Down
6 changes: 3 additions & 3 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.0"
version = "0.10.1"
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.2.2"
guppy = { version = "0.14.0", path = "../../guppy", features = ["rayon1"] }
guppy = { version = "0.14.2", path = "../../guppy", features = ["rayon1"] }
include_dir = { version = "0.7.2", features = ["glob"], optional = true }
indenter = "0.3.3"
itertools = "0.10.3"
Expand All @@ -39,7 +39,7 @@ proptest-derive = { version = "0.3.0", optional = true }
rayon = "1.5.3"
serde = { version = "1.0.137", features = ["derive"], optional = true }
tabular = { version = "0.2.0", features = ["ansi-cell"], optional = true }
target-spec = { version = "1.0.0", path = "../../target-spec" }
target-spec = { version = "1.0.2", path = "../../target-spec" }
toml = { version = "0.5.9", optional = true }
toml_edit = "0.13.4"
twox-hash = { version = "1.6.3", default-features = false }
Expand Down

0 comments on commit 88681d7

Please sign in to comment.