Skip to content

Commit d57af90

Browse files
committed
Prepare release
1 parent dfc4ff0 commit d57af90

File tree

8 files changed

+13
-14
lines changed

8 files changed

+13
-14
lines changed

CHANGELOG.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## [0.24.0] 2025/1/1
44

55
### Changed
66

@@ -13,9 +13,6 @@
1313
- `#[context]` to have test function name and other useful thighs on
1414
the tip of your fingers (see [#177](https://github.com/la10736/rstest/issues/177))
1515

16-
### Fixed
17-
18-
1916
## [0.23.0] 2024/9/29
2017

2118
### Add

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ following lines to your `Cargo.toml` file:
1414

1515
```toml
1616
[dev-dependencies]
17-
rstest = "0.23.0"
17+
rstest = "0.24.0"
1818
```
1919

2020
### Features

checkoutlist.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
- [ ] Update rustup
44
- [ ] Run `cargo clippy`
5-
- [ ] Check msrv: `cargo hack check --rust-version --workspace --ignore-private`
5+
- [ ] Check msrv:
6+
- [ ] `cargo hack check --rust-version --workspace --ignore-private`
7+
- [ ] `cargo hack test --rust-version --workspace --exclude rstest_reuse --ignore-private -- --skip rstest::ignore_args_not_fixtures`
68
- [ ] Update Release
79
- [ ] `README.md`
810
- [ ] Run all test: `for channel in stable beta nightly; do RSTEST_TEST_CHANNEL=${channel} cargo +${channel} test; done`

playground/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ lazy_static = "1.4.0"
1515

1616
[dependencies.rstest]
1717
path = "../rstest"
18-
version = "0.24.0-dev"
18+
version = "0.24.0"
1919

2020
[dependencies.rstest_reuse]
2121
path = "../rstest_reuse"

rstest/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ name = "rstest"
1313
readme = "README.md"
1414
repository = "https://github.com/la10736/rstest"
1515
rust-version = "1.70.0"
16-
version = "0.24.0-dev"
16+
version = "0.24.0"
1717

1818
[features]
1919
async-timeout = [
@@ -29,7 +29,7 @@ default = ["async-timeout", "crate-name"]
2929
[dependencies]
3030
futures-timer = { version = "3.0.3", optional = true }
3131
futures-util = { version = "0.3.30", optional = true }
32-
rstest_macros = { version = "0.24.0-dev", path = "../rstest_macros", default-features = false }
32+
rstest_macros = { version = "0.24.0", path = "../rstest_macros", default-features = false }
3333

3434
[dev-dependencies]
3535
actix-rt = "2.9.0"

rstest_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0"
1212
name = "rstest_macros"
1313
repository = "https://github.com/la10736/rstest"
1414
rust-version = "1.70.0"
15-
version = "0.24.0-dev"
15+
version = "0.24.0"
1616

1717
[lib]
1818
proc-macro = true

rstest_test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ name = "rstest_test"
1212
readme = "README.md"
1313
repository = "https://github.com/la10736/rstest"
1414
rust-version = "1.69.0"
15-
version = "0.13.0"
15+
version = "0.14.0"
1616

1717
[dependencies]
1818
regex = "1.10.6"

rstest_test/src/prj.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ pub enum Channel {
2323
impl Display for Channel {
2424
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
2525
match self {
26-
Channel::Stable => write!(f, "stable"),
27-
Channel::Beta => write!(f, "beta"),
28-
Channel::Nightly => write!(f, "nightly"),
26+
Channel::Stable => write!(f, "+stable"),
27+
Channel::Beta => write!(f, "+beta"),
28+
Channel::Nightly => write!(f, "+nightly"),
2929
Channel::Custom(name) => write!(f, "+{name}"),
3030
}
3131
}

0 commit comments

Comments
 (0)