Skip to content

Commit

Permalink
Update dependency and prepare the release
Browse files Browse the repository at this point in the history
  • Loading branch information
la10736 committed Sep 29, 2024
1 parent 0c6e203 commit da11d4e
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 33 deletions.
6 changes: 1 addition & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
# Changelog

## Unreleased

### Changed
## [0.23.0] 2024/9/29

### Add

- You can now use environment variables in `#[files]` with an optional default value (see [#277](https://github.com/la10736/rstest/pull/277)).
- You can now set a base_dir for `#[files]` with the `$[base_dir = "..."]` attribute (see [#277](https://github.com/la10736/rstest/pull/277)).

### Fixed

## [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.22.0"
rstest = "0.23.0"
```

### Features
Expand Down
2 changes: 1 addition & 1 deletion playground/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ lazy_static = "1.4.0"

[dependencies.rstest]
path = "../rstest"
version = "0.23.0-dev"
version = "0.23.0"

[dependencies.rstest_reuse]
path = "../rstest_reuse"
Expand Down
20 changes: 10 additions & 10 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.23.0-dev"
version = "0.23.0"

[features]
async-timeout = [
Expand All @@ -27,21 +27,21 @@ default = ["async-timeout", "crate-name"]
[lib]

[dependencies]
futures = { version = "0.3.21", optional = true }
futures-timer = { version = "3.0.2", optional = true }
rstest_macros = { version = "0.23.0-dev", path = "../rstest_macros", default-features = false }
futures = { version = "0.3.30", optional = true }
futures-timer = { version = "3.0.3", optional = true }
rstest_macros = { version = "0.23.0", path = "../rstest_macros", default-features = false }

[dev-dependencies]
actix-rt = "2.7.0"
actix-rt = "2.9.0"
async-std = { version = "1.13.0", features = ["attributes"] }
lazy_static = "1.4.0"
lazy_static = "1.5.0"
mytest = { package = "rstest", version = "0.22.0", default-features = false }
pretty_assertions = "1.2.1"
pretty_assertions = "1.4.1"
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"
tokio = { version = "1.38.1", features = ["rt", "macros"] }
unindent = "0.2.3"

[build-dependencies]
rustc_version = "0.4.0"
rustc_version = "0.4.1"
22 changes: 11 additions & 11 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.23.0-dev"
version = "0.23.0"

[lib]
proc-macro = true
Expand All @@ -25,28 +25,28 @@ crate-name = ["dep:proc-macro-crate"]
[dependencies]
cfg-if = "1.0.0"
glob = "0.3.1"
proc-macro2 = "1.0.39"
quote = "1.0.19"
regex = "1.7.3"
relative-path = "1.8.0"
syn = { version = "2.0.2", features = [
proc-macro2 = "1.0.86"
quote = "1.0.37"
regex = "1.10.6"
relative-path = "1.9.3"
syn = { version = "2.0.79", features = [
"full",
"parsing",
"extra-traits",
"visit",
"visit-mut",
] }
unicode-ident = "1.0.5"
proc-macro-crate = { version = "3.1.0", optional = true }
unicode-ident = "1.0.13"
proc-macro-crate = { version = "3.2.0", optional = true }

[dev-dependencies]
actix-rt = "2.7.0"
actix-rt = "2.9.0"
async-std = { version = "1.13.0", features = ["attributes"] }
maplit = "1.0.2"
pretty_assertions = "1.2.1"
pretty_assertions = "1.4.1"
rstest = { version = "0.22.0", default-features = false }
rstest_reuse = { path = "../rstest_reuse" }
rstest_test = { path = "../rstest_test" }

[build-dependencies]
rustc_version = "0.4.0"
rustc_version = "0.4.1"
6 changes: 3 additions & 3 deletions rstest_reuse/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ version = "0.7.0"
proc-macro = true

[dependencies]
quote = "1.0.9"
quote = "1.0.37"
rand = "0.8.5"
syn = { version = "2.0.2", features = ["full", "extra-traits"] }
syn = { version = "2.0.79", features = ["full", "extra-traits"] }

[dev-dependencies]
lazy_static = "1.4.0"
lazy_static = "1.5.0"
rstest_test = { path = "../rstest_test" }
temp_testdir = "0.2.3"
# To compile doc tests
Expand Down
4 changes: 2 additions & 2 deletions rstest_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ rust-version = "1.69.0"
version = "0.13.0"

[dependencies]
regex = "1.5.6"
regex = "1.10.6"
toml_edit = "=0.21.0"

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

0 comments on commit da11d4e

Please sign in to comment.