File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[package ]
22name = " cargo-nextest"
33description = " A next-generation test runner for Rust."
4- version = " 0.9.8 "
4+ version = " 0.9.9 "
55readme = " README.md"
66license = " Apache-2.0 OR MIT"
77repository = " https://github.com/nextest-rs/nextest"
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 33This page documents new features and bugfixes for cargo-nextest. Please see the [ stability
44policy] ( 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
You can’t perform that action at this time.
0 commit comments