Skip to content

Commit cda2bf2

Browse files
committed
update libtest-mimic, update MSRV
1 parent afa8d70 commit cda2bf2

File tree

6 files changed

+101
-65
lines changed

6 files changed

+101
-65
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
os:
5959
- ubuntu-latest
6060
- windows-latest
61-
rust-version: ["1.66", stable]
61+
rust-version: ["1.72", stable]
6262
fail-fast: false
6363
steps:
6464
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
@@ -78,3 +78,14 @@ jobs:
7878
run: cargo nextest run
7979
- name: Run tests with cargo test
8080
run: cargo test
81+
82+
# Remove Cargo.lock to ensure that building with the latest versions works on stable.
83+
- name: Remove Cargo.lock and rebuild on stable
84+
if: matrix.rust-version == 'stable'
85+
run: rm Cargo.lock && cargo build
86+
- name: Run tests on stable
87+
if: matrix.rust-version == 'stable'
88+
run: cargo nextest run
89+
- name: Run tests with cargo test on stable
90+
if: matrix.rust-version == 'stable'
91+
run: cargo test

CHANGELOG.md

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

3+
## [0.2.10] - 2024-12-08
4+
5+
- Update to `libtest-mimic 0.8.1`.
6+
- Update MSRV to Rust 1.72.
7+
38
## [0.2.9] - 2024-04-25
49

510
### Added
@@ -109,6 +114,7 @@ There are no functional changes in this release.
109114

110115
(Version 0.1.0 was yanked because of a metadata issue.)
111116

117+
[0.2.10]: https://github.com/nextest-rs/datatest-stable/releases/tag/datatest-stable-0.2.10
112118
[0.2.9]: https://github.com/nextest-rs/datatest-stable/releases/tag/datatest-stable-0.2.9
113119
[0.2.8]: https://github.com/nextest-rs/datatest-stable/releases/tag/datatest-stable-0.2.8
114120
[0.2.7]: https://github.com/nextest-rs/datatest-stable/releases/tag/datatest-stable-0.2.7

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ readme = "README.md"
99
edition = "2021"
1010
categories = ["development-tools::testing"]
1111
keywords = ["datatest", "data-driven-tests", "test-harness"]
12-
rust-version = "1.66"
12+
rust-version = "1.72"
1313

1414
[dependencies]
1515
camino = "1.1.9"
1616
fancy-regex = "0.14.0"
17-
libtest-mimic = "0.7.3"
17+
libtest-mimic = "0.8.1"
1818
walkdir = "2.5.0"
1919

2020
[target.'cfg(unix)'.dev-dependencies]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ datatest_stable::harness!(
8181

8282
## Minimum supported Rust version (MSRV)
8383

84-
The minimum supported Rust version is **Rust 1.66**. MSRV bumps may be accompanied by a minor
84+
The minimum supported Rust version is **Rust 1.72**. MSRV bumps may be accompanied by a minor
8585
version update; at any time, Rust versions from at least the last 6 months are supported.
8686

8787
## See also

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
//!
7979
//! # Minimum supported Rust version (MSRV)
8080
//!
81-
//! The minimum supported Rust version is **Rust 1.66**. MSRV bumps may be accompanied by a minor
81+
//! The minimum supported Rust version is **Rust 1.72**. MSRV bumps may be accompanied by a minor
8282
//! version update; at any time, Rust versions from at least the last 6 months are supported.
8383
//!
8484
//! # See also

0 commit comments

Comments
 (0)