Skip to content

Commit 38da6bf

Browse files
committed
Prepare 0.21.0 Release
1 parent ca69788 commit 38da6bf

File tree

6 files changed

+9
-13
lines changed

6 files changed

+9
-13
lines changed

CHANGELOG.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
# Changelog
22

3-
## Unreleased
3+
## [0.21.0] 2024/6/1
44

55
### Changed
66

7-
- Add feature `crate-name` (enable by default to opt-in crate rename
7+
- Add feature `crate-name` enabled by default to opt-in crate rename
88
support. See [#258](https://github.com/la10736/rstest/issues/258)
99

10-
### Add
11-
12-
### Fixed
13-
1410
## [0.20.0] 2024/5/30
1511

1612
### Add

README.md

+1-1
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.20.0"
17+
rstest = "0.21.0"
1818
```
1919

2020
### Features

rstest/Cargo.toml

+3-3
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.67.1"
16-
version = "0.20.0"
16+
version = "0.21.0"
1717

1818
[features]
1919
async-timeout = [
@@ -29,13 +29,13 @@ default = ["async-timeout", "crate-name"]
2929
[dependencies]
3030
futures = { version = "0.3.21", optional = true }
3131
futures-timer = { version = "3.0.2", optional = true }
32-
rstest_macros = { version = "0.20.0", path = "../rstest_macros", default-features = false }
32+
rstest_macros = { version = "0.21.0", path = "../rstest_macros", default-features = false }
3333

3434
[dev-dependencies]
3535
actix-rt = "2.7.0"
3636
async-std = { version = "1.12.0", features = ["attributes"] }
3737
lazy_static = "1.4.0"
38-
mytest = { package = "rstest", version = "0.19.0", default-features = false }
38+
mytest = { package = "rstest", version = "0.20.0", default-features = false }
3939
pretty_assertions = "1.2.1"
4040
rstest_reuse = { path = "../rstest_reuse" }
4141
rstest_test = { path = "../rstest_test" }

rstest_macros/Cargo.toml

+1-1
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.67.1"
15-
version = "0.20.0"
15+
version = "0.21.0"
1616

1717
[lib]
1818
proc-macro = true

rstest_reuse/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ lazy_static = "1.4.0"
3030
rstest_test = { path = "../rstest_test" }
3131
temp_testdir = "0.2.3"
3232
# To compile doc tests
33-
rstest = { version = "0.19.0" }
33+
rstest = { version = "0.20.0" }

rstest_test/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ toml_edit = "=0.21.0"
2020

2121
[dev-dependencies]
2222
lazy_static = "1.4.0"
23-
rstest = { version = "0.19.0", default-features = false }
23+
rstest = { version = "0.20.0", default-features = false }
2424
temp_testdir = "0.2.3"

0 commit comments

Comments
 (0)