diff --git a/CHANGELOG.md b/CHANGELOG.md index 91c349b..9c6a3e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## [0.24.0] 2025/1/1 ### Changed @@ -13,9 +13,6 @@ - `#[context]` to have test function name and other useful thighs on the tip of your fingers (see [#177](https://github.com/la10736/rstest/issues/177)) -### Fixed - - ## [0.23.0] 2024/9/29 ### Add diff --git a/README.md b/README.md index bfb0a2b..d4a25d7 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ following lines to your `Cargo.toml` file: ```toml [dev-dependencies] -rstest = "0.23.0" +rstest = "0.24.0" ``` ### Features diff --git a/checkoutlist.md b/checkoutlist.md index d0154bb..a75ea9d 100644 --- a/checkoutlist.md +++ b/checkoutlist.md @@ -2,7 +2,9 @@ - [ ] Update rustup - [ ] Run `cargo clippy` -- [ ] Check msrv: `cargo hack check --rust-version --workspace --ignore-private` +- [ ] Check msrv: + - [ ] `cargo hack check --rust-version --workspace --ignore-private` + - [ ] `cargo hack test --rust-version --workspace --exclude rstest_reuse --ignore-private -- --skip rstest::ignore_args_not_fixtures` - [ ] Update Release - [ ] `README.md` - [ ] Run all test: `for channel in stable beta nightly; do RSTEST_TEST_CHANNEL=${channel} cargo +${channel} test; done` diff --git a/playground/Cargo.toml b/playground/Cargo.toml index a763286..adc22f2 100644 --- a/playground/Cargo.toml +++ b/playground/Cargo.toml @@ -15,7 +15,7 @@ lazy_static = "1.4.0" [dependencies.rstest] path = "../rstest" -version = "0.24.0-dev" +version = "0.24.0" [dependencies.rstest_reuse] path = "../rstest_reuse" diff --git a/rstest/Cargo.toml b/rstest/Cargo.toml index 3a31938..0dedb34 100644 --- a/rstest/Cargo.toml +++ b/rstest/Cargo.toml @@ -13,7 +13,7 @@ name = "rstest" readme = "README.md" repository = "https://github.com/la10736/rstest" rust-version = "1.70.0" -version = "0.24.0-dev" +version = "0.24.0" [features] async-timeout = [ @@ -29,7 +29,7 @@ default = ["async-timeout", "crate-name"] [dependencies] futures-timer = { version = "3.0.3", optional = true } futures-util = { version = "0.3.30", optional = true } -rstest_macros = { version = "0.24.0-dev", path = "../rstest_macros", default-features = false } +rstest_macros = { version = "0.24.0", path = "../rstest_macros", default-features = false } [dev-dependencies] actix-rt = "2.9.0" diff --git a/rstest_macros/Cargo.toml b/rstest_macros/Cargo.toml index c223b25..92e205e 100644 --- a/rstest_macros/Cargo.toml +++ b/rstest_macros/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0" name = "rstest_macros" repository = "https://github.com/la10736/rstest" rust-version = "1.70.0" -version = "0.24.0-dev" +version = "0.24.0" [lib] proc-macro = true diff --git a/rstest_test/Cargo.toml b/rstest_test/Cargo.toml index 2fa1ca7..cd157a9 100644 --- a/rstest_test/Cargo.toml +++ b/rstest_test/Cargo.toml @@ -12,7 +12,7 @@ name = "rstest_test" readme = "README.md" repository = "https://github.com/la10736/rstest" rust-version = "1.69.0" -version = "0.13.0" +version = "0.14.0" [dependencies] regex = "1.10.6" diff --git a/rstest_test/src/prj.rs b/rstest_test/src/prj.rs index 7dbe65f..8de4fb3 100644 --- a/rstest_test/src/prj.rs +++ b/rstest_test/src/prj.rs @@ -23,9 +23,9 @@ pub enum Channel { impl Display for Channel { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { match self { - Channel::Stable => write!(f, "stable"), - Channel::Beta => write!(f, "beta"), - Channel::Nightly => write!(f, "nightly"), + Channel::Stable => write!(f, "+stable"), + Channel::Beta => write!(f, "+beta"), + Channel::Nightly => write!(f, "+nightly"), Channel::Custom(name) => write!(f, "+{name}"), } }