Skip to content

Commit

Permalink
Prepare 0.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
la10736 committed Aug 4, 2024
1 parent 16591fd commit 6213428
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## [0.22.0] 2024/8/4

### Changed

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.21.0"
rstest = "0.22.0"
```

### Features
Expand Down
6 changes: 3 additions & 3 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.67.1"
version = "0.21.0"
version = "0.22.0"

[features]
async-timeout = [
Expand All @@ -29,13 +29,13 @@ default = ["async-timeout", "crate-name"]
[dependencies]
futures = { version = "0.3.21", optional = true }
futures-timer = { version = "3.0.2", optional = true }
rstest_macros = { version = "0.21.0", path = "../rstest_macros", default-features = false }
rstest_macros = { version = "0.22.0", path = "../rstest_macros", default-features = false }

[dev-dependencies]
actix-rt = "2.7.0"
async-std = { version = "1.12.0", features = ["attributes"] }
lazy_static = "1.4.0"
mytest = { package = "rstest", version = "0.20.0", default-features = false }
mytest = { package = "rstest", version = "0.21.0", default-features = false }
pretty_assertions = "1.2.1"
rstest_reuse = { path = "../rstest_reuse" }
rstest_test = { path = "../rstest_test" }
Expand Down
4 changes: 2 additions & 2 deletions 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.67.1"
version = "0.21.0"
version = "0.22.0"

[lib]
proc-macro = true
Expand Down Expand Up @@ -44,7 +44,7 @@ actix-rt = "2.7.0"
async-std = { version = "1.12.0", features = ["attributes"] }
maplit = "1.0.2"
pretty_assertions = "1.2.1"
rstest = { version = "0.20.0", default-features = false }
rstest = { version = "0.21.0", default-features = false }
rstest_reuse = { path = "../rstest_reuse" }
rstest_test = { path = "../rstest_test" }

Expand Down
2 changes: 1 addition & 1 deletion rstest_reuse/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ lazy_static = "1.4.0"
rstest_test = { path = "../rstest_test" }
temp_testdir = "0.2.3"
# To compile doc tests
rstest = { version = "0.20.0" }
rstest = { version = "0.21.0" }
2 changes: 1 addition & 1 deletion rstest_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ toml_edit = "=0.21.0"

[dev-dependencies]
lazy_static = "1.4.0"
rstest = { version = "0.20.0", default-features = false }
rstest = { version = "0.21.0", default-features = false }
temp_testdir = "0.2.3"

0 comments on commit 6213428

Please sign in to comment.