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

Commit

Permalink
prepare to release updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sunshowers committed Sep 13, 2021
1 parent cc7938e commit 47160e5
Show file tree
Hide file tree
Showing 10 changed files with 58 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion cargo-guppy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ anyhow = "1.0.43"
camino = "1.0.5"
clap = "2.33.3"
dialoguer = "0.8.0"
guppy = { version = "0.9.0", path = "../guppy", features = ["summaries"] }
guppy = { version = "0.10.0", path = "../guppy", features = ["summaries"] }
guppy-cmdlib = { path = "../guppy-cmdlib" }
itertools = "0.10.1"
pathdiff = "0.2.0"
Expand Down
11 changes: 11 additions & 0 deletions guppy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [0.10.0] - 2021-09-13

### Changed

- Public dependency version bumps:
- `target-spec` updated to 0.8.0.
- As a result, `Platform` no longer has a lifetime parameter.
- `semver` updated to 1.0.
- MSRV updated to Rust 1.51.

## [0.9.0] - 2021-03-11

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

[0.10.0]: https://github.com/facebookincubator/cargo-guppy/releases/tag/guppy-0.10.0
[0.9.0]: https://github.com/facebookincubator/cargo-guppy/releases/tag/guppy-0.9.0
[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
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.9.0"
version = "0.10.0"
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 @@ semver = "1.0.4"
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.67"
supercow = "0.1.0"
target-spec = { version = "0.7.0", path = "../target-spec" }
target-spec = { version = "0.8.0", path = "../target-spec" }

[dev-dependencies]
fixtures = { path = "../fixtures" }
Expand Down
21 changes: 21 additions & 0 deletions target-spec/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## [0.8.0] - 2021-09-13

### Added

- `Triple` represents a target triple, uniquely identified by a triple string.
- `TargetExpression` represents a target expression beginning with `cfg(`.

### Changed

- `target-spec` now uses [`target-lexicon`](https://github.com/bytecodealliance/target-lexicon) to parse triples,
while continuing to use `cfg-expr` for expressions and evaluation.
- Updated supported builtin targets to Rust 1.55.
- `target-spec` is now more forward compatible, since new targets in future versions of Rust
can be supported with non-breaking updates to `target-lexicon`.
- `TargetSpec` is now an enum with `Triple` and `TargetExpression` variants.
- `Platform` no longer has a lifetime parameter.
- Updated supported builtin targets to Rust 1.55.
- `cfg-expr` is now a private dependency again (`target-lexicon` is also a private dependency).
- MSRV updated to Rust 1.51.

## [0.7.0] - 2021-02-23

### Changed
Expand Down Expand Up @@ -100,6 +120,7 @@ This was mistakenly published and was yanked.
## [0.1.0] - 2020-03-20
- Initial release.

[0.8.0]: https://github.com/facebookincubator/cargo-guppy/releases/tag/target-spec-0.8.0
[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
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 = "0.7.0"
version = "0.8.0"
description = "Evaluate Cargo.toml target specifications"
documentation = "https://docs.rs/target-spec"
repository = "https://github.com/facebookincubator/cargo-guppy"
Expand Down
10 changes: 9 additions & 1 deletion tools/determinator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
# Changelog

## [0.5.0] - 2021-09-13

### Changed

- Public dependency version bump: `guppy` updated to 0.10.0.
- MSRV updated to Rust 1.51.

## [0.4.0] - 2021-03-11

### Changed

- `guppy` updated to 0.9.0.
- Public dependency version bump: `guppy` updated to 0.9.0.

## [0.3.0] - 2021-02-23

Expand Down Expand Up @@ -43,6 +50,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.5.0]: https://github.com/facebookincubator/cargo-guppy/releases/tag/determinator-0.5.0
[0.4.0]: https://github.com/facebookincubator/cargo-guppy/releases/tag/determinator-0.4.0
[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
Expand Down
2 changes: 1 addition & 1 deletion tools/determinator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ include = [
[dependencies]
camino = "1.0.5"
globset = "0.4.8"
guppy = { version = "0.9.0", path = "../../guppy", features = ["rayon1", "summaries"] }
guppy = { version = "0.10.0", path = "../../guppy", features = ["rayon1", "summaries"] }
itertools = "0.10.1"
once_cell = "1.8.0"
petgraph = { version = "0.6.0", default-features = false, features = ["graphmap"] }
Expand Down
10 changes: 9 additions & 1 deletion tools/hakari/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
# Changelog

## [0.4.0] - 2021-09-13

### Changed

- Public dependency version bump: `guppy` updated to 0.10.0.
- MSRV updated to Rust 1.51.

## [0.3.0] - 2021-03-11

### Changed

- `guppy` updated to 0.9.0.
- Public dependency version bump: `guppy` updated to 0.9.0.
- `HakariCargoToml` now uses `camino`'s UTF-8 paths.
- `HakariCargoToml::new` now accepts `impl Into<Utf8PathBuf>` rather than `impl Into<PathBuf>`.
- `HakariCargoToml::toml_path` returns `&Utf8Path` instead of `&Path`.
Expand Down Expand Up @@ -33,6 +40,7 @@

Initial release.

[0.4.0]: https://github.com/facebookincubator/cargo-guppy/releases/tag/hakari-0.4.0
[0.3.0]: https://github.com/facebookincubator/cargo-guppy/releases/tag/hakari-0.3.0
[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
Expand Down
2 changes: 1 addition & 1 deletion tools/hakari/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ atomicwrites = "0.3.0"
camino = "1.0.5"
cfg-if = "1.0.0"
diffy = "0.2.1"
guppy = { version = "0.9.0", path = "../../guppy", features = ["rayon1"] }
guppy = { version = "0.10.0", path = "../../guppy", features = ["rayon1"] }
pathdiff = "0.2.0"
proptest = { version = "1.0.0", optional = true }
proptest-derive = { version = "0.3.0", optional = true }
Expand Down

0 comments on commit 47160e5

Please sign in to comment.