Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
la10736 committed Jan 1, 2025
1 parent dfc4ff0 commit d57af90
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 14 deletions.
5 changes: 1 addition & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## [0.24.0] 2025/1/1

### Changed

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ following lines to your `Cargo.toml` file:

```toml
[dev-dependencies]
rstest = "0.23.0"
rstest = "0.24.0"
```

### Features
Expand Down
4 changes: 3 additions & 1 deletion checkoutlist.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion playground/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions rstest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion rstest_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion rstest_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions rstest_test/src/prj.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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}"),
}
}
Expand Down

0 comments on commit d57af90

Please sign in to comment.