diff --git a/CHANGELOG.md b/CHANGELOG.md index 8956e7e..33f937c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,12 @@ # Changelog -## Unreleased - -### Add +## [0.18.2] 2023/8/13 ### Changed - Now `#[files]` accept also parent folders: see [#205](https://github.com/la10736/rstest/issues/205) for more details. -### Fixed - ## [0.18.1] 2023/7/5 ### Fixed diff --git a/README.md b/README.md index 1752527..f47ff94 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ following lines to your `Cargo.toml` file: ``` [dev-dependencies] -rstest = "0.18.1" +rstest = "0.18.2" ``` ### Fixture diff --git a/rstest/Cargo.toml b/rstest/Cargo.toml index 3aa651f..e4a63ea 100644 --- a/rstest/Cargo.toml +++ b/rstest/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0" name = "rstest" readme = "README.md" repository = "https://github.com/la10736/rstest" -version = "0.19.0" +version = "0.18.2" [features] async-timeout = [ @@ -27,7 +27,7 @@ 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 = { version = "0.18.2", path = "../rstest_macros", default-features = false } [dev-dependencies] actix-rt = "2.7.0" diff --git a/rstest_macros/Cargo.toml b/rstest_macros/Cargo.toml index 6695990..fdc7b92 100644 --- a/rstest_macros/Cargo.toml +++ b/rstest_macros/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["test", "fixture"] license = "MIT OR Apache-2.0" name = "rstest_macros" repository = "https://github.com/la10736/rstest" -version = "0.19.0" +version = "0.18.2" [lib] proc-macro = true