Skip to content

Commit f5a85e3

Browse files
committed
[meta] prepare releases
1 parent 52e90e2 commit f5a85e3

File tree

4 files changed

+33
-8
lines changed

4 files changed

+33
-8
lines changed

cargo-nextest/src/dispatch.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -515,12 +515,12 @@ struct TestBuildFilter {
515515
#[arg(long, short = 'E', value_name = "EXPR", action(ArgAction::Append))]
516516
filter_expr: Vec<String>,
517517

518-
/// Test name filters (deprecated, use filters after -- instead)
519-
#[arg(name = "FILTERS", hide = true)]
518+
/// Test name filters
519+
#[arg(help_heading = None, name = "FILTERS")]
520520
pre_double_dash_filters: Vec<String>,
521521

522522
/// Test name filters and emulated test binary arguments (partially supported)
523-
#[arg(help_heading = None, value_name = "FILTERS", last = true)]
523+
#[arg(help_heading = None, value_name = "FILTERS_AND_ARGS", last = true)]
524524
filters: Vec<String>,
525525
}
526526

nextest-runner/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# Changelog
22

3+
## [0.54.1] - 2023-03-04
4+
5+
See the changelog for [cargo-nextest 0.9.68](https://nexte.st/CHANGELOG.html#0968---2024-03-16).
6+
37
## [0.54.0] - 2024-03-04
48

5-
See the changelog for [cargo-nextest 0.9.68](https://nexte.st/CHANGELOG.html#0967---2024-03-05).
9+
(This version was superseded by version 0.54.1.)
610

711
## [0.53.1] - 2024-01-09
812

@@ -434,6 +438,7 @@ Thanks to [Guiguiprim](https://github.com/Guiguiprim) for their contributions to
434438

435439
- Initial version.
436440

441+
[0.54.1]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.54.1
437442
[0.54.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.54.0
438443
[0.53.1]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.53.1
439444
[0.53.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.53.0

site/src/CHANGELOG.md

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,29 @@
33
This page documents new features and bugfixes for cargo-nextest. Please see the [stability
44
policy](book/stability.md) for how versioning works with cargo-nextest.
55

6-
## [0.9.68-b.2] - 2024-03-04
6+
## [0.9.68-rc.1] - 2024-03-16
77

8-
This is a test release.
8+
This is a maintenance release with many internal improvements, and preparation for future features.
9+
10+
### Changed
11+
12+
- Nextest binaries now ship with symbols, producing better stack traces. This is aligned with the behavior. See [issue #1345](https://github.com/nextest-rs/nextest/issues/1345) for more information.
13+
14+
- Thanks to recent improvements, Miri is now significantly less taxing. As a result, [nextest with Miri](https://nexte.st/book/miri) has been changed to use all threads by default. You can restore the old Miri behavior (run one test at a time) with `-j1`, or by setting in `.config/nextest.toml`:
15+
16+
```toml
17+
[profile.default-miri]
18+
test-threads = 1
19+
```
20+
21+
Rules for [heavy tests](https://nexte.st/book/threads-required) and [test groups](https://nexte.st/book/test-groups) will continue to be followed with Miri.
22+
23+
Thanks to [Ben Kimock](https://github.com/saethlin) for driving the Miri improvements and updating nextest!
24+
25+
### Misc
26+
27+
- The [filter expression](https://nexte.st/book/filter-expressions) parser now uses [winnow](https://docs.rs/winnow).
28+
- [get.nexte.st](https://get.nexte.st) now uses Cloudflare rather than Netlify for hosting. See [this discussion](https://github.com/nextest-rs/nextest/discussions/1383) for more.
929

1030
## [0.9.67] - 2024-01-09
1131

@@ -930,7 +950,7 @@ Supported in this initial release:
930950
- [Test retries](book/retries.md) and flaky test detection
931951
- [JUnit support](book/junit.md) for integration with other test tooling
932952

933-
[0.9.68-b.2]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.68-b.2
953+
[0.9.68-rc.1]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.68-rc.1
934954
[0.9.67]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.67
935955
[0.9.66]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.66
936956
[0.9.65]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.65

site/src/book/running.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ For more about unit and integration tests, see [the documentation for `cargo tes
4141
To only run tests that match certain names:
4242

4343
```
44-
cargo nextest run -- <test-name1> <test-name2>...
44+
cargo nextest run <test-name1> <test-name2>...
4545
```
4646

4747
### `--skip` and `--exact`

0 commit comments

Comments
 (0)