Skip to content

Commit 5e89fae

Browse files
committed
[ci] fix builds on Rust 1.54
1 parent 5f4894a commit 5e89fae

File tree

7 files changed

+30
-7
lines changed

7 files changed

+30
-7
lines changed

Cargo.lock

Lines changed: 3 additions & 3 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: 1 addition & 1 deletion
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.0"
4+
version = "0.9.1"
55
readme = "README.md"
66
license = "Apache-2.0 OR MIT"
77
repository = "https://github.com/nextest-rs/nextest"

nextest-runner/CHANGELOG.md

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

3+
## [0.1.1] - 2022-02-14
4+
5+
### Changed
6+
7+
- Updated quick-junit to 0.1.5, fixing builds on Rust 1.54.
8+
39
## [0.1.0] - 2022-02-14
410

511
- Initial version.
612

13+
[0.1.1]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.1.0
714
[0.1.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.1.0

nextest-runner/Cargo.toml

Lines changed: 2 additions & 2 deletions
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.1.0"
4+
version = "0.1.1"
55
readme = "README.md"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/nextest-rs/nextest"
@@ -32,7 +32,7 @@ strip-ansi-escapes = "0.1.1"
3232
twox-hash = { version = "1.6.2", default-features = false }
3333

3434
nextest-metadata = { version = "0.1.0", path = "../nextest-metadata" }
35-
quick-junit = { version = "0.1.4", path = "../quick-junit" }
35+
quick-junit = { version = "0.1.5", path = "../quick-junit" }
3636

3737
[dev-dependencies]
3838
color-eyre = { version = "0.6.0", default-features = false }

quick-junit/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## Unreleased
44

5+
## [0.1.5] - 2022-02-14
6+
7+
### Changed
8+
9+
- Lower MSRV to Rust 1.54.
10+
11+
## Unreleased
12+
513
## [0.1.4] - 2022-02-07
614

715
### Fixed
@@ -30,6 +38,7 @@
3038

3139
- Initial version.
3240

41+
[0.1.5]: https://github.com/nextest-rs/nextest/releases/tag/quick-junit-0.1.5
3342
[0.1.4]: https://github.com/nextest-rs/nextest/releases/tag/quick-junit-0.1.4
3443
[0.1.3]: https://github.com/diem/diem-devtools/releases/tag/quick-junit-0.1.3
3544
[0.1.2]: https://github.com/diem/diem-devtools/releases/tag/quick-junit-0.1.2

quick-junit/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "quick-junit"
33
description = "Data model and serializer for JUnit/XUnit XML"
4-
version = "0.1.4"
4+
version = "0.1.5"
55
readme = "README.md"
66
license = "Apache-2.0 OR MIT"
77
repository = "https://github.com/nextest-rs/nextest"

site/src/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
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.1] - 2022-02-14
7+
8+
### Changed
9+
10+
- Updated nextest-runner to 0.1.1, fixing builds on Rust 1.54.
11+
612
## [0.9.0] - 2022-02-14
713

814
**Initial release.** Happy Valentine's day!
@@ -17,4 +23,5 @@ Supported in this initial release:
1723
* [Test retries](book/retries.md) and flaky test detection
1824
* [JUnit support](book/junit.md) for integration with other test tooling
1925

26+
[0.9.1]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.1
2027
[0.9.0]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.0

0 commit comments

Comments
 (0)