Skip to content

Commit 7c28a72

Browse files
committed
[meta] prepare releases
1 parent 29e9697 commit 7c28a72

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

nextest-runner/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
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

59
See 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

site/src/changelog.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,26 @@ toc_depth: 1
88
This page documents new features and bugfixes for cargo-nextest. Please see the [stability
99
policy](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

0 commit comments

Comments
 (0)