Skip to content

Commit

Permalink
[meta] prepare releases
Browse files Browse the repository at this point in the history
  • Loading branch information
sunshowers committed Jul 30, 2022
1 parent 41dc3fa commit 4f96fc1
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 10 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions cargo-nextest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "cargo-nextest"
description = "A next-generation test runner for Rust."
version = "0.9.31"
version = "0.9.32"
readme = "README.md"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/nextest-rs/nextest"
Expand All @@ -26,8 +26,8 @@ guppy = "0.14.2"
log = "0.4.17"
itertools = "0.10.3"
miette = { version = "5.1.1", features = ["fancy"] }
nextest-filtering = { version = "=0.2.0", path = "../nextest-filtering" }
nextest-runner = { version = "=0.21.0", path = "../nextest-runner" }
nextest-filtering = { version = "=0.2.1", path = "../nextest-filtering" }
nextest-runner = { version = "=0.22.0", path = "../nextest-runner" }
nextest-metadata = { version = "=0.5.0", path = "../nextest-metadata" }
num_cpus = "1.13.1"
once_cell = "1.13.0"
Expand Down
7 changes: 7 additions & 0 deletions nextest-filtering/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.2.1] - 2022-07-30

### Internal

- Evaluation now uses a stack machine via the [recursion](https://crates.io/crates/recursion) crate. Thanks [Inanna](https://github.com/inanna-malick) for your first contribution!

## [0.2.0] - 2022-07-13

### Added
Expand All @@ -19,5 +25,6 @@

Initial release.

[0.2.1]: https://github.com/nextest-rs/nextest/releases/tag/nextest-filtering-0.2.1
[0.2.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-filtering-0.2.0
[0.1.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-filtering-0.1.0
2 changes: 1 addition & 1 deletion nextest-filtering/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nextest-filtering"
version = "0.2.0"
version = "0.2.1"
description = "Filtering DSL for cargo-nextest"
license = "MIT OR Apache-2.0"
edition = "2021"
Expand Down
10 changes: 9 additions & 1 deletion nextest-runner/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.22.0] - 2022-07-30

### Changed

- Progress bar library `indicatif` updated to 0.17.0.

## [0.21.0] - 2022-07-27

### Changed
Expand Down Expand Up @@ -255,7 +261,9 @@ Thanks to [Guiguiprim](https://github.com/Guiguiprim) for their contributions to

- Initial version.

[0.20.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.19.0
[0.22.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.22.0
[0.21.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.21.0
[0.20.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.20.0
[0.19.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.19.0
[0.18.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.18.0
[0.17.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.17.0
Expand Down
4 changes: 2 additions & 2 deletions nextest-runner/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "nextest-runner"
description = "Core runner logic for cargo nextest."
version = "0.21.0"
version = "0.22.0"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/nextest-rs/nextest"
Expand Down Expand Up @@ -73,7 +73,7 @@ self_update = { version = "0.30.0", optional = true, default-features = false, f
"rustls",
] }

nextest-filtering = { version = "0.2.0", path = "../nextest-filtering" }
nextest-filtering = { version = "0.2.1", path = "../nextest-filtering" }
nextest-metadata = { version = "0.5.0", path = "../nextest-metadata" }
quick-junit = { version = "0.3.0", path = "../quick-junit" }
uuid = { version = "1.1.2", features = ["v4"] }
Expand Down
12 changes: 12 additions & 0 deletions site/src/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
This page documents new features and bugfixes for cargo-nextest. Please see the [stability
policy](book/stability.md) for how versioning works with cargo-nextest.

## [0.9.32] - 2022-07-30

### Added

- `cargo nextest run` now has a new `--no-run` feature to build but not run tests. (This was previously achievable with `cargo nextest list -E 'none()'`, but is more intuitive this way.)
- Pre-built binaries are now available for i686 Windows. Thanks [Guiguiprim](https://github.com/Guiguiprim)!

### Internal improvements

- Filter expression evaluation now uses a stack machine via the [recursion](https://crates.io/crates/recursion) crate. Thanks [Inanna](https://github.com/inanna-malick) for your first contribution!

## [0.9.31] - 2022-07-27

### Added
Expand Down Expand Up @@ -482,6 +493,7 @@ Supported in this initial release:
* [Test retries](book/retries.md) and flaky test detection
* [JUnit support](book/junit.md) for integration with other test tooling

[0.9.32]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.32
[0.9.31]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.31
[0.9.30]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.30
[0.9.29]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.29
Expand Down

0 comments on commit 4f96fc1

Please sign in to comment.