Skip to content

Commit

Permalink
Remove hardcoded versions and prepare new version
Browse files Browse the repository at this point in the history
  • Loading branch information
la10736 committed Apr 9, 2024
1 parent 3ffd682 commit 2880bad
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 12 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,13 @@
# Changelog

## Unreleased

### Changed

### Add

### Fixed

## [0.19.0] 2024/4/9

### Changed
Expand Down
10 changes: 5 additions & 5 deletions rstest/Cargo.toml
Expand Up @@ -13,7 +13,7 @@ name = "rstest"
readme = "README.md"
repository = "https://github.com/la10736/rstest"
rust-version = "1.67.1"
version = "0.19.0"
version = "0.20.0"

[features]
async-timeout = [
Expand All @@ -28,16 +28,16 @@ default = ["async-timeout"]
[dependencies]
futures = { version = "0.3.21", optional = true }
futures-timer = { version = "3.0.2", optional = true }
rstest_macros = { version = "0.19.0", path = "../rstest_macros", default-features = false }
rstest_macros = { 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.2", default-features = false }
mytest = { package = "rstest", version = "0.19.0", default-features = false }
pretty_assertions = "1.2.1"
rstest_reuse = { version = "0.6.0", path = "../rstest_reuse" }
rstest_test = { version = "0.11.0", path = "../rstest_test" }
rstest_reuse = { path = "../rstest_reuse" }
rstest_test = { path = "../rstest_test" }
temp_testdir = "0.2.3"
tokio = { version = "1.19.2", features = ["rt", "macros"] }
unindent = "0.2.1"
Expand Down
8 changes: 4 additions & 4 deletions rstest_macros/Cargo.toml
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.19.0"
version = "0.20.0"

[lib]
proc-macro = true
Expand Down Expand Up @@ -42,9 +42,9 @@ 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.2", default-features = false }
rstest_reuse = { version = "0.6.0", path = "../rstest_reuse" }
rstest_test = { version = "0.11.0", path = "../rstest_test" }
rstest = { version = "0.19.0", default-features = false }
rstest_reuse = { path = "../rstest_reuse" }
rstest_test = { path = "../rstest_test" }

[build-dependencies]
rustc_version = "0.4.0"
4 changes: 2 additions & 2 deletions rstest_reuse/Cargo.toml
Expand Up @@ -27,10 +27,10 @@ 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 = { path = "../rstest_test" }
temp_testdir = "0.2.3"
# To compile doc tests
rstest = { version = "0.18.2" }
rstest = { version = "0.19.0" }

[build-dependencies]
rustc_version = "0.4.0"
2 changes: 1 addition & 1 deletion rstest_test/Cargo.toml
Expand Up @@ -20,5 +20,5 @@ toml_edit = "0.21.0"

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

0 comments on commit 2880bad

Please sign in to comment.