From aee4e34b6e495f45c85330242fa0fda764a75eea Mon Sep 17 00:00:00 2001 From: la10736 Date: Wed, 5 Jul 2023 09:08:19 +0200 Subject: [PATCH] Prepare 0.18.1 --- CHANGELOG.md | 9 ++++++++- README.md | 2 +- rstest/Cargo.toml | 24 ++++++++++++++---------- rstest_macros/Cargo.toml | 18 ++++++++++++------ 4 files changed, 35 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 59fa86c..a76fc5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Changelog -## [0.18.0] 2023/7/04 +## [0.18.1] 2023/7/5 + +### Fixed + +- Wrong doc test +- Docs + +## [0.18.0] 2023/7/4 ### Add diff --git a/README.md b/README.md index 81f31d2..9e74a4f 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ following lines to your `Cargo.toml` file: ``` [dev-dependencies] -rstest = "0.18.0" +rstest = "0.18.1" ``` ### Fixture diff --git a/rstest/Cargo.toml b/rstest/Cargo.toml index f9367d5..316d747 100644 --- a/rstest/Cargo.toml +++ b/rstest/Cargo.toml @@ -12,29 +12,33 @@ license = "MIT/Apache-2.0" name = "rstest" readme = "README.md" repository = "https://github.com/la10736/rstest" -version = "0.19.0" +version = "0.18.1" [features] -async-timeout = ["dep:futures", "dep:futures-timer", "rstest_macros/async-timeout"] +async-timeout = [ + "dep:futures", + "dep:futures-timer", + "rstest_macros/async-timeout", +] default = ["async-timeout"] [lib] [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} +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 } [dev-dependencies] actix-rt = "2.7.0" -async-std = {version = "1.12.0", features = ["attributes"]} +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.0", 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"} +rstest_reuse = { version = "0.5.0", path = "../rstest_reuse" } +rstest_test = { version = "0.11.0", path = "../rstest_test" } temp_testdir = "0.2.3" -tokio = {version = "1.19.2", features = ["rt", "macros"]} +tokio = { version = "1.19.2", features = ["rt", "macros"] } unindent = "0.2.1" [build-dependencies] diff --git a/rstest_macros/Cargo.toml b/rstest_macros/Cargo.toml index af419ac..a985dae 100644 --- a/rstest_macros/Cargo.toml +++ b/rstest_macros/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["test", "fixture"] license = "MIT/Apache-2.0" name = "rstest_macros" repository = "https://github.com/la10736/rstest" -version = "0.19.0" +version = "0.18.1" [lib] proc-macro = true @@ -27,17 +27,23 @@ proc-macro2 = "1.0.39" quote = "1.0.19" regex = "1.7.3" relative-path = "1.8.0" -syn = {version = "2.0.2", features = ["full", "parsing", "extra-traits", "visit", "visit-mut"]} +syn = { version = "2.0.2", features = [ + "full", + "parsing", + "extra-traits", + "visit", + "visit-mut", +] } unicode-ident = "1.0.5" [dev-dependencies] actix-rt = "2.7.0" -async-std = {version = "1.12.0", features = ["attributes"]} +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_reuse = {version = "0.5.0", path = "../rstest_reuse"} -rstest_test = {version = "0.11.0", path = "../rstest_test"} +rstest = { version = "0.18.0", default-features = false } +rstest_reuse = { version = "0.5.0", path = "../rstest_reuse" } +rstest_test = { version = "0.11.0", path = "../rstest_test" } [build-dependencies] rustc_version = "0.4.0"