File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed
Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 0.63.0] - 2024-10-02
4+
5+ See the changelog for [ cargo-nextest 0.9.80] ( https://nexte.st/changelog#0.9.80 ) .
6+
37## [ 0.62.0] - 2024-10-02
48
59See the changelog for [ cargo-nextest 0.9.79] ( https://nexte.st/changelog#0.9.79 ) .
@@ -474,6 +478,7 @@ Thanks to [Guiguiprim](https://github.com/Guiguiprim) for their contributions to
474478
475479- Initial version.
476480
481+ [ 0.63.0 ] : https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.63.0
477482[ 0.62.0 ] : https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.62.0
478483[ 0.61.0 ] : https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.61.0
479484[ 0.60.0 ] : https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.60.0
Original file line number Diff line number Diff line change @@ -8,6 +8,26 @@ toc_depth: 1
88This page documents new features and bugfixes for cargo-nextest. Please see the [ stability
99policy] ( https://nexte.st/docs/stability/ ) for how versioning works with cargo-nextest.
1010
11+ ## [ 0.9.80] - 2024-10-05
12+
13+ ### Added
14+
15+ Support for ` --skip ` and ` --exact ` as emulated test binary arguments. The semantics match those of ` libtest ` binaries.
16+
17+ For example, to run all tests other than those matching the substring ` slow_tests ` :
18+
19+ ```
20+ cargo nextest run -- --skip slow_tests
21+ ```
22+
23+ To run all tests matching either the substring ` my_test ` or the exact string ` exact_test ` :
24+
25+ ```
26+ cargo nextest run -- my_test --exact exact_test
27+ ```
28+
29+ Thanks to [ svix-jplatte] ( https://github.com/svix-jplatte ) for your first contribution!
30+
1131## [ 0.9.79] - 2024-10-02
1232
1333### Added
@@ -1100,6 +1120,7 @@ Supported in this initial release:
11001120- [Test retries](https://nexte.st/book/retries.md) and flaky test detection
11011121- [JUnit support](https://nexte.st/book/junit.md) for integration with other test tooling
11021122
1123+ [0.9.80] : https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.80
11031124[0.9.79] : https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.79
11041125[0.9.78] : https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.78
11051126[0.9.77] : https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.77
You can’t perform that action at this time.
0 commit comments