Skip to content

Commit 9de7224

Browse files
committed
[cargo-nextest] updates for Rust 1.59
1 parent 9a0569b commit 9de7224

4 files changed

Lines changed: 17 additions & 4 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cargo-nextest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cargo-nextest"
33
description = "A next-generation test runner for Rust."
4-
version = "0.9.8"
4+
version = "0.9.9"
55
readme = "README.md"
66
license = "Apache-2.0 OR MIT"
77
repository = "https://github.com/nextest-rs/nextest"

cargo-nextest/src/cargo_cli.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ pub(crate) struct CargoOptions {
6464

6565
// jobs is handled by test runner
6666
/// Build artifacts in release mode, with optimizations
67-
#[clap(long)]
67+
#[clap(long, short = 'r')]
6868
release: bool,
6969

7070
/// Build artifacts with the specified Cargo profile
@@ -103,7 +103,7 @@ pub(crate) struct CargoOptions {
103103
#[clap(long)]
104104
unit_graph: bool,
105105

106-
/// Outputs a future incompatibility report at the end of the build (unstable)
106+
/// Outputs a future incompatibility report at the end of the build
107107
#[clap(long)]
108108
future_incompat_report: bool,
109109

site/src/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
This page documents new features and bugfixes for cargo-nextest. Please see the [stability
44
policy](book/stability.md) for how versioning works with cargo-nextest.
55

6+
## [0.9.9] - 2022-03-03
7+
8+
### Added
9+
10+
- Updates for Rust 1.59:
11+
- Support abbreviating `--release` as `-r` ([Cargo #10133]).
12+
- Stabilize future-incompat-report ([Cargo #10165]).
13+
- Update builtin list of targets (used by the target runner) to Rust 1.59.
14+
15+
[Cargo #10133]: https://github.com/rust-lang/cargo/pull/10133
16+
[Cargo #10165]: https://github.com/rust-lang/cargo/pull/10165
17+
618
## [0.9.8] - 2022-02-23
719

820
### Fixed
@@ -90,6 +102,7 @@ Supported in this initial release:
90102
* [Test retries](book/retries.md) and flaky test detection
91103
* [JUnit support](book/junit.md) for integration with other test tooling
92104

105+
[0.9.9]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.9
93106
[0.9.8]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.8
94107
[0.9.7]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.7
95108
[0.9.6]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.6

0 commit comments

Comments
 (0)