Skip to content

Commit

Permalink
Prepare 0.21.0 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
la10736 committed Jun 1, 2024
1 parent ca69788 commit 38da6bf
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 13 deletions.
8 changes: 2 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
# Changelog

## Unreleased
## [0.21.0] 2024/6/1

### Changed

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

### Add

### Fixed

## [0.20.0] 2024/5/30

### 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.20.0"
rstest = "0.21.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.20.0"
version = "0.21.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.20.0", path = "../rstest_macros", default-features = false }
rstest_macros = { version = "0.21.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.19.0", default-features = false }
mytest = { package = "rstest", version = "0.20.0", default-features = false }
pretty_assertions = "1.2.1"
rstest_reuse = { path = "../rstest_reuse" }
rstest_test = { path = "../rstest_test" }
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.67.1"
version = "0.20.0"
version = "0.21.0"

[lib]
proc-macro = true
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.19.0" }
rstest = { version = "0.20.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.19.0", default-features = false }
rstest = { version = "0.20.0", default-features = false }
temp_testdir = "0.2.3"

0 comments on commit 38da6bf

Please sign in to comment.