Skip to content

Commit 7bfd312

Browse files
committed
[meta] prepare releases
1 parent 978fc3d commit 7bfd312

13 files changed

Lines changed: 83 additions & 35 deletions

File tree

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: 3 additions & 3 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.11"
4+
version = "0.9.12"
55
readme = "README.md"
66
license = "Apache-2.0 OR MIT"
77
repository = "https://github.com/nextest-rs/nextest"
@@ -23,8 +23,8 @@ enable-ansi-support = "0.1.2"
2323
env_logger = { version = "0.9.0", default-features = false }
2424
guppy = "0.14.1"
2525
log = "0.4.14"
26-
nextest-runner = { version = "0.4.0", path = "../nextest-runner" }
27-
nextest-metadata = { version = "0.2.1", path = "../nextest-metadata" }
26+
nextest-runner = { version = "0.5.0", path = "../nextest-runner" }
27+
nextest-metadata = { version = "0.3.0", path = "../nextest-metadata" }
2828
owo-colors = { version = "3.3.0", features = ["supports-colors"] }
2929
shellwords = "1.1.0"
3030
supports-color = "1.3.0"

nextest-metadata/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44

55
### Added
66

7-
- `TestListSummary` and `BinaryListSummary` have a new member called `rust_build_meta`
7+
- `TestListSummary` and `BinaryListSummary` have a new member called `rust_build_meta` key. This key currently contains the target directory, the base output directories, and paths to [search for dynamic libraries in](https://nexte.st/book/env-vars#dynamic-library-paths) relative to the target directory.
8+
9+
### Changed
10+
11+
- MSRV bumped to Rust 1.56.
812

913
## [0.2.1] - 2022-03-09
1014

@@ -29,5 +33,7 @@ This release is compatible with cargo-nextest 0.9.10 and later.
2933

3034
- Initial version, with support for listing tests.
3135

36+
[0.3.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-metadata-0.3.0
37+
[0.2.1]: https://github.com/nextest-rs/nextest/releases/tag/nextest-metadata-0.2.1
3238
[0.2.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-metadata-0.2.0
3339
[0.1.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-metadata-0.1.0

nextest-metadata/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nextest-metadata"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
description = "Structured access to nextest machine-readable output."
55
license = "MIT OR Apache-2.0"
66
edition = "2021"

nextest-metadata/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Once a crate has reached 1.x, any MSRV bump will be accompanied with a new minor
3939

4040
## Minimum supported cargo-nextest version
4141

42-
The "minimum supported cargo-nextest version" is **cargo-nextest 0.9.10**.
42+
The "minimum supported cargo-nextest version" is **cargo-nextest 0.9.12**.
4343

4444
For more about nextest-metadata's stability policy, see the [Stability
4545
page](https://nexte.st/book/stability#nextest-metadata) on the nextest site.

nextest-metadata/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
//!
3434
//! # Minimum supported cargo-nextest version
3535
//!
36-
//! The "minimum supported cargo-nextest version" is **cargo-nextest 0.9.10**.
36+
//! The "minimum supported cargo-nextest version" is **cargo-nextest 0.9.12**.
3737
//!
3838
//! For more about nextest-metadata's stability policy, see the [Stability
3939
//! page](https://nexte.st/book/stability#nextest-metadata) on the nextest site.

nextest-runner/CHANGELOG.md

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

3-
## Unreleased
3+
## [0.5.0] - 2022-03-22
4+
5+
### Added
6+
7+
- `BinaryList` and `TestList` have a new member called `rust_build_meta`, which returns Rust build-related metadata for a binary list or test list. This currently contains the target directory, the base output directories, and paths to [search for dynamic libraries in](https://nexte.st/book/env-vars#dynamic-library-paths) relative to the target directory.
48

59
### Changed
610

@@ -58,6 +62,7 @@ Thanks to [Guiguiprim](https://github.com/Guiguiprim) for their contributions to
5862

5963
- Initial version.
6064

65+
[0.5.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.5.0
6166
[0.4.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.4.0
6267
[0.3.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.3.0
6368
[0.2.1]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.2.1

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.4.0"
4+
version = "0.5.0"
55
readme = "README.md"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/nextest-rs/nextest"
@@ -40,7 +40,7 @@ target-spec = "1.0"
4040
toml = "0.5.8"
4141
twox-hash = { version = "1.6.2", default-features = false }
4242

43-
nextest-metadata = { version = "0.2.1", path = "../nextest-metadata" }
43+
nextest-metadata = { version = "0.3.0", path = "../nextest-metadata" }
4444
quick-junit = { version = "0.1.5", path = "../quick-junit" }
4545

4646
[dev-dependencies]

nextest-runner/src/list/test_list.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ impl<'g> TestList<'g> {
276276
self.test_count
277277
}
278278

279-
/// Returns the Rust-related metadata for this test list.
279+
/// Returns the Rust build-related metadata for this test list.
280280
pub fn rust_build_meta(&self) -> &RustBuildMeta<TestListState> {
281281
&self.rust_build_meta
282282
}

site/help-text/list-help.txt

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ ARGS:
99

1010
OPTIONS:
1111
--manifest-path <PATH> Path to Cargo.toml
12-
-v, --verbose Verbose output
13-
--color <WHEN> Produce color output: auto, always, never [default: auto]
12+
-v, --verbose Verbose output [env: NEXTEST_VERBOSE=]
13+
--color <WHEN> Produce color output: auto, always, never [env: CARGO_TERM_COLOR=]
14+
[default: auto]
1415
--config-file <PATH> Config file [default: workspace-root/.config/nextest.toml]
1516
-h, --help Print help information
1617

@@ -59,7 +60,7 @@ OUTPUT OPTIONS:
5960
only]
6061

6162
REUSE BUILD OPTIONS (EXPERIMENTAL):
62-
--binaries-metadata <PATH> Path to binaries-metadata JSON
63-
--binaries-dir-remap <PATH> Remapping for the test binaries directory
64-
--cargo-metadata <PATH> Path to cargo metadata JSON
65-
--workspace-remap <PATH> Remapping for the workspace root
63+
--binaries-metadata <PATH> Path to binaries-metadata JSON
64+
--target-dir-remap <PATH> Remapping for the target directory
65+
--cargo-metadata <PATH> Path to cargo metadata JSON
66+
--workspace-remap <PATH> Remapping for the workspace root

0 commit comments

Comments
 (0)