Skip to content

Commit da11d4e

Browse files
committed
Update dependency and prepare the release
1 parent 0c6e203 commit da11d4e

File tree

7 files changed

+29
-33
lines changed

7 files changed

+29
-33
lines changed

CHANGELOG.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
# Changelog
22

3-
## Unreleased
4-
5-
### Changed
3+
## [0.23.0] 2024/9/29
64

75
### Add
86

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

12-
### Fixed
13-
1410
## [0.22.0] 2024/8/4
1511

1612
### Changed

README.md

Lines changed: 1 addition & 1 deletion
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.22.0"
17+
rstest = "0.23.0"
1818
```
1919

2020
### Features

playground/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ lazy_static = "1.4.0"
1515

1616
[dependencies.rstest]
1717
path = "../rstest"
18-
version = "0.23.0-dev"
18+
version = "0.23.0"
1919

2020
[dependencies.rstest_reuse]
2121
path = "../rstest_reuse"

rstest/Cargo.toml

Lines changed: 10 additions & 10 deletions
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.23.0-dev"
16+
version = "0.23.0"
1717

1818
[features]
1919
async-timeout = [
@@ -27,21 +27,21 @@ default = ["async-timeout", "crate-name"]
2727
[lib]
2828

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

3434
[dev-dependencies]
35-
actix-rt = "2.7.0"
35+
actix-rt = "2.9.0"
3636
async-std = { version = "1.13.0", features = ["attributes"] }
37-
lazy_static = "1.4.0"
37+
lazy_static = "1.5.0"
3838
mytest = { package = "rstest", version = "0.22.0", default-features = false }
39-
pretty_assertions = "1.2.1"
39+
pretty_assertions = "1.4.1"
4040
rstest_reuse = { path = "../rstest_reuse" }
4141
rstest_test = { path = "../rstest_test" }
4242
temp_testdir = "0.2.3"
43-
tokio = { version = "1.19.2", features = ["rt", "macros"] }
44-
unindent = "0.2.1"
43+
tokio = { version = "1.38.1", features = ["rt", "macros"] }
44+
unindent = "0.2.3"
4545

4646
[build-dependencies]
47-
rustc_version = "0.4.0"
47+
rustc_version = "0.4.1"

rstest_macros/Cargo.toml

Lines changed: 11 additions & 11 deletions
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.23.0-dev"
15+
version = "0.23.0"
1616

1717
[lib]
1818
proc-macro = true
@@ -25,28 +25,28 @@ crate-name = ["dep:proc-macro-crate"]
2525
[dependencies]
2626
cfg-if = "1.0.0"
2727
glob = "0.3.1"
28-
proc-macro2 = "1.0.39"
29-
quote = "1.0.19"
30-
regex = "1.7.3"
31-
relative-path = "1.8.0"
32-
syn = { version = "2.0.2", features = [
28+
proc-macro2 = "1.0.86"
29+
quote = "1.0.37"
30+
regex = "1.10.6"
31+
relative-path = "1.9.3"
32+
syn = { version = "2.0.79", features = [
3333
"full",
3434
"parsing",
3535
"extra-traits",
3636
"visit",
3737
"visit-mut",
3838
] }
39-
unicode-ident = "1.0.5"
40-
proc-macro-crate = { version = "3.1.0", optional = true }
39+
unicode-ident = "1.0.13"
40+
proc-macro-crate = { version = "3.2.0", optional = true }
4141

4242
[dev-dependencies]
43-
actix-rt = "2.7.0"
43+
actix-rt = "2.9.0"
4444
async-std = { version = "1.13.0", features = ["attributes"] }
4545
maplit = "1.0.2"
46-
pretty_assertions = "1.2.1"
46+
pretty_assertions = "1.4.1"
4747
rstest = { version = "0.22.0", default-features = false }
4848
rstest_reuse = { path = "../rstest_reuse" }
4949
rstest_test = { path = "../rstest_test" }
5050

5151
[build-dependencies]
52-
rustc_version = "0.4.0"
52+
rustc_version = "0.4.1"

rstest_reuse/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ version = "0.7.0"
2121
proc-macro = true
2222

2323
[dependencies]
24-
quote = "1.0.9"
24+
quote = "1.0.37"
2525
rand = "0.8.5"
26-
syn = { version = "2.0.2", features = ["full", "extra-traits"] }
26+
syn = { version = "2.0.79", features = ["full", "extra-traits"] }
2727

2828
[dev-dependencies]
29-
lazy_static = "1.4.0"
29+
lazy_static = "1.5.0"
3030
rstest_test = { path = "../rstest_test" }
3131
temp_testdir = "0.2.3"
3232
# To compile doc tests

rstest_test/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ rust-version = "1.69.0"
1515
version = "0.13.0"
1616

1717
[dependencies]
18-
regex = "1.5.6"
18+
regex = "1.10.6"
1919
toml_edit = "=0.21.0"
2020

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

0 commit comments

Comments
 (0)