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

Commit

Permalink
prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
sunshowers committed Feb 24, 2021
1 parent e81d296 commit dc6dcc1
Show file tree
Hide file tree
Showing 12 changed files with 31 additions and 26 deletions.
10 changes: 5 additions & 5 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.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"
Expand Down
3 changes: 2 additions & 1 deletion guppy-summaries/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## [0.4.0] - 2021-02-23

### Changed

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion guppy-summaries/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
11 changes: 6 additions & 5 deletions guppy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## [0.8.0] - 2021-02-23

### Changed

Expand All @@ -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

Expand All @@ -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

Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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
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.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"
Expand Down Expand Up @@ -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"
Expand All @@ -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" }
Expand Down
7 changes: 4 additions & 3 deletions target-spec/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
# Changelog

## Unreleased
## [0.7.0] - 2021-02-23

### Changed

- Public dependency version bumps:
- `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

Expand Down Expand Up @@ -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
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.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"
Expand Down
3 changes: 2 additions & 1 deletion tools/determinator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## [0.3.0] - 2021-02-23

### Changed

Expand Down Expand Up @@ -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
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.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 <[email protected]>"]
Expand Down Expand Up @@ -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"] }
Expand Down
3 changes: 2 additions & 1 deletion tools/hakari/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## [0.2.0] - 2021-02-23

### Changed

Expand All @@ -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
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.1.1"
version = "0.2.0"
description = "Manage workspace-hack packages that do feature unification inside workspaces."
documentation = "https://docs.rs/determinator"
authors = ["Rain <[email protected]>"]
Expand All @@ -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 }
Expand Down

0 comments on commit dc6dcc1

Please sign in to comment.