Skip to content

Commit e2bf59f

Browse files
committed
[nextest] update nextest-runner and cargo-nextest versions
Fixes #52.
1 parent 40ba800 commit e2bf59f

File tree

7 files changed

+34
-6
lines changed

7 files changed

+34
-6
lines changed

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cargo-nextest/Cargo.toml

+2-2
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.4"
4+
version = "0.9.5"
55
readme = "README.md"
66
license = "Apache-2.0 OR MIT"
77
repository = "https://github.com/nextest-rs/nextest"
@@ -23,7 +23,7 @@ enable-ansi-support = "0.1.2"
2323
env_logger = { version = "0.9.0", default-features = false }
2424
guppy = "0.13.0"
2525
log = "0.4.14"
26-
nextest-runner = { version = "0.1.1", path = "../nextest-runner" }
26+
nextest-runner = { version = "0.1.2", path = "../nextest-runner" }
2727
nextest-metadata = { version = "0.1.0", path = "../nextest-metadata" }
2828
owo-colors = { version = "3.2.0", features = ["supports-colors"] }
2929
shellwords = "1.1.0"

cargo-nextest/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ A new, faster test runner for Rust.
1111

1212
For documentation and usage, see [the nextest site](https://nexte.st).
1313

14+
## Installation
15+
16+
While you can install cargo-nextest from source, using the pre-built binaries is recommended.
17+
See [Pre-built binaries](https://nexte.st/book/pre-built-binaries) on the nextest site
18+
for more information.
19+
1420
## Contributing
1521

1622
See the [CONTRIBUTING](../CONTRIBUTING.md) file for how to help out.

cargo-nextest/src/lib.rs

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44
//! A new, faster test runner for Rust.
55
//!
66
//! For documentation and usage, see [the nextest site](https://nexte.st).
7+
//!
8+
//! # Installation
9+
//!
10+
//! While you can install cargo-nextest from source, using the pre-built binaries is recommended.
11+
//! See [Pre-built binaries](https://nexte.st/book/pre-built-binaries) on the nextest site
12+
//! for more information.
713
814
#![warn(missing_docs)]
915

nextest-runner/CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [0.1.2] - 2022-02-20
4+
5+
### Added
6+
7+
- In test output, module paths are now colored cyan ([#42]).
8+
39
## [0.1.1] - 2022-02-14
410

511
### Changed
@@ -10,5 +16,6 @@
1016

1117
- Initial version.
1218

13-
[0.1.1]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.1.0
19+
[0.1.2]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.1.2
20+
[0.1.1]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.1.1
1421
[0.1.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.1.0

nextest-runner/Cargo.toml

+1-1
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.1"
4+
version = "0.1.2"
55
readme = "README.md"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/nextest-rs/nextest"

site/src/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.5] - 2022-02-22
7+
8+
### Fixed
9+
10+
- Updated nextest-runner to 0.1.2, fixing cyan coloring of module paths ([#52]).
11+
12+
[#52]: https://github.com/nextest-rs/nextest/issues/52
13+
614
## [0.9.4] - 2022-02-16
715

816
The big new change is that release binaries are now available! Head over to [Pre-built binaries](https://nexte.st/book/pre-built-binaries) for more.
@@ -53,6 +61,7 @@ Supported in this initial release:
5361
* [Test retries](book/retries.md) and flaky test detection
5462
* [JUnit support](book/junit.md) for integration with other test tooling
5563

64+
[0.9.5]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.5
5665
[0.9.4]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.4
5766
[0.9.3]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.3
5867
[0.9.2]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.2

0 commit comments

Comments
 (0)