Skip to content

Commit

Permalink
Prepare next release
Browse files Browse the repository at this point in the history
  • Loading branch information
la10736 committed Jul 5, 2023
1 parent aee4e34 commit eb4b619
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## Unreleased

### Add

### Changed

### Fixed

## [0.18.1] 2023/7/5

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions rstest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ license = "MIT/Apache-2.0"
name = "rstest"
readme = "README.md"
repository = "https://github.com/la10736/rstest"
version = "0.18.1"
version = "0.19.0"

[features]
async-timeout = [
Expand All @@ -27,13 +27,13 @@ default = ["async-timeout"]
[dependencies]
futures = { version = "0.3.21", optional = true }
futures-timer = { version = "3.0.2", optional = true }
rstest_macros = { version = "0.18.1", path = "../rstest_macros", default-features = false }
rstest_macros = { version = "0.19.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.18.0", default-features = false }
mytest = { package = "rstest", version = "0.18.1", default-features = false }
pretty_assertions = "1.2.1"
rstest_reuse = { version = "0.5.0", path = "../rstest_reuse" }
rstest_test = { version = "0.11.0", 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 @@ -11,7 +11,7 @@ keywords = ["test", "fixture"]
license = "MIT/Apache-2.0"
name = "rstest_macros"
repository = "https://github.com/la10736/rstest"
version = "0.18.1"
version = "0.19.0"

[lib]
proc-macro = true
Expand Down Expand Up @@ -41,7 +41,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.18.0", default-features = false }
rstest = { version = "0.18.1", default-features = false }
rstest_reuse = { version = "0.5.0", path = "../rstest_reuse" }
rstest_test = { version = "0.11.0", path = "../rstest_test" }

Expand Down
6 changes: 3 additions & 3 deletions rstest_reuse/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ proc-macro = true
[dependencies]
quote = "1.0.9"
rand = "0.8.5"
syn = {version = "2.0.2", features = ["full", "extra-traits"]}
syn = { version = "2.0.2", features = ["full", "extra-traits"] }

[dev-dependencies]
lazy_static = "1.4.0"
rstest_test = {version = "0.11.0", path = "../rstest_test"}
rstest_test = { version = "0.11.0", path = "../rstest_test" }
temp_testdir = "0.2.3"
# To compile doc tests
rstest = {version = "0.18.0"}
rstest = { version = "0.18.1" }

[build-dependencies]
rustc_version = "0.4.0"
2 changes: 1 addition & 1 deletion rstest_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ toml_edit = "0.19.0"

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

0 comments on commit eb4b619

Please sign in to comment.