Skip to content

Commit 3eef9ac

Browse files
committed
[meta] prepare releases
1 parent 94aee02 commit 3eef9ac

5 files changed

Lines changed: 50 additions & 5 deletions

File tree

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cargo-nextest/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cargo-nextest"
33
description = "A next-generation test runner for Rust."
4-
version = "0.9.17"
4+
version = "0.9.18"
55
readme = "README.md"
66
license = "Apache-2.0 OR MIT"
77
repository = "https://github.com/nextest-rs/nextest"
@@ -26,7 +26,7 @@ log = "0.4.17"
2626
itertools = "0.10.3"
2727
miette = { version = "4.7.1", features = ["fancy"] }
2828
nextest-filtering = { version = "0.1.0", path = "../nextest-filtering" }
29-
nextest-runner = { version = "0.9.0", path = "../nextest-runner" }
29+
nextest-runner = { version = "0.10.0", path = "../nextest-runner" }
3030
nextest-metadata = { version = "0.4.1", path = "../nextest-metadata" }
3131
owo-colors = { version = "3.4.0", features = ["supports-colors"] }
3232
pathdiff = { version = "0.2.1", features = ["camino"] }

nextest-runner/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changelog
22

3+
## [0.10.0] - 2022-06-08
4+
5+
### Added
6+
7+
- Support for terminating tests if they take too long, via the configuration parameter `slow-timeout.terminate-after`. For example, to time out after 120 seconds:
8+
9+
```toml
10+
slow-timeout = { period = "60s", terminate-after = 2 }
11+
```
12+
13+
Thanks [steveeJ](https://github.com/steveeJ) for your contribution ([#214])!
14+
15+
[#214]: https://github.com/nextest-rs/nextest/pull/214
16+
17+
### Fixed
18+
19+
- Improved support for [reusing builds](https://nexte.st/book/reusing-builds): produce better error messages if the workspace's source is missing.
20+
21+
### Changed
22+
23+
- Errors are now defined with [thiserror](https://docs.rs/thiserror). Some minor API changes were required for the migration.
24+
325
## [0.9.0] - 2022-06-07
426

527
This release contains a number of user experience improvements.
@@ -126,6 +148,7 @@ Thanks to [Guiguiprim](https://github.com/Guiguiprim) for their contributions to
126148

127149
- Initial version.
128150

151+
[0.10.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.10.0
129152
[0.9.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.9.0
130153
[0.8.1]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.8.1
131154
[0.8.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.8.0

nextest-runner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "nextest-runner"
33
description = "Core runner logic for cargo nextest."
4-
version = "0.9.0"
4+
version = "0.10.0"
55
readme = "README.md"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/nextest-rs/nextest"

site/src/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
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.18] - 2022-06-08
7+
8+
### Added
9+
10+
11+
### Added
12+
13+
- Support for terminating tests if they take too long, via the configuration parameter `slow-timeout.terminate-after`. For example, to time out after 120 seconds:
14+
15+
```toml
16+
slow-timeout = { period = "60s", terminate-after = 2 }
17+
```
18+
19+
Thanks [steveeJ](https://github.com/steveeJ) for your contribution ([#214])!
20+
21+
[#214]: https://github.com/nextest-rs/nextest/pull/214
22+
23+
### Fixed
24+
25+
- Improved support for [reusing builds](https://nexte.st/book/reusing-builds): produce better error messages if the workspace's source is missing.
26+
627
## [0.9.17] - 2022-06-07
728

829
This release contains a number of user experience improvements.
@@ -227,6 +248,7 @@ Supported in this initial release:
227248
* [Test retries](book/retries.md) and flaky test detection
228249
* [JUnit support](book/junit.md) for integration with other test tooling
229250

251+
[0.9.18]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.18
230252
[0.9.17]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.17
231253
[0.9.16]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.16
232254
[0.9.15]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.15

0 commit comments

Comments
 (0)