From 7c28a7283320542358a681e269a4de1c005d6154 Mon Sep 17 00:00:00 2001 From: Rain Date: Sat, 5 Oct 2024 14:25:29 -0700 Subject: [PATCH] [meta] prepare releases --- nextest-runner/CHANGELOG.md | 5 +++++ site/src/changelog.md | 21 +++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/nextest-runner/CHANGELOG.md b/nextest-runner/CHANGELOG.md index ab2a68bf332..896fb50c751 100644 --- a/nextest-runner/CHANGELOG.md +++ b/nextest-runner/CHANGELOG.md @@ -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). @@ -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 diff --git a/site/src/changelog.md b/site/src/changelog.md index d5bd4e7eecd..44f299f550d 100644 --- a/site/src/changelog.md +++ b/site/src/changelog.md @@ -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 @@ -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