Skip to content

Commit

Permalink
[meta] prepare releases
Browse files Browse the repository at this point in the history
  • Loading branch information
sunshowers committed Oct 5, 2024
1 parent 29e9697 commit 7c28a72
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
5 changes: 5 additions & 0 deletions nextest-runner/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [0.63.0] - 2024-10-02

See the changelog for [cargo-nextest 0.9.80](https://nexte.st/changelog#0.9.80).

## [0.62.0] - 2024-10-02

See the changelog for [cargo-nextest 0.9.79](https://nexte.st/changelog#0.9.79).
Expand Down Expand Up @@ -474,6 +478,7 @@ Thanks to [Guiguiprim](https://github.com/Guiguiprim) for their contributions to

- Initial version.

[0.63.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.63.0
[0.62.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.62.0
[0.61.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.61.0
[0.60.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.60.0
Expand Down
21 changes: 21 additions & 0 deletions site/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,26 @@ toc_depth: 1
This page documents new features and bugfixes for cargo-nextest. Please see the [stability
policy](https://nexte.st/docs/stability/) for how versioning works with cargo-nextest.

## [0.9.80] - 2024-10-05

### Added

Support for `--skip` and `--exact` as emulated test binary arguments. The semantics match those of `libtest` binaries.

For example, to run all tests other than those matching the substring `slow_tests`:

```
cargo nextest run -- --skip slow_tests
```

To run all tests matching either the substring `my_test` or the exact string `exact_test`:

```
cargo nextest run -- my_test --exact exact_test
```

Thanks to [svix-jplatte](https://github.com/svix-jplatte) for your first contribution!

## [0.9.79] - 2024-10-02

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

[0.9.80]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.80
[0.9.79]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.79
[0.9.78]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.78
[0.9.77]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.77
Expand Down

0 comments on commit 7c28a72

Please sign in to comment.