Skip to content

Commit

Permalink
Prepare 0.18.1
Browse files Browse the repository at this point in the history
  • Loading branch information
la10736 committed Jul 5, 2023
1 parent 7c6d3f2 commit aee4e34
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 18 deletions.
9 changes: 8 additions & 1 deletion 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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -14,7 +14,7 @@ following lines to your `Cargo.toml` file:

```
[dev-dependencies]
rstest = "0.18.0"
rstest = "0.18.1"
```

### Fixture
Expand Down
24 changes: 14 additions & 10 deletions rstest/Cargo.toml
Expand Up @@ -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]
Expand Down
18 changes: 12 additions & 6 deletions rstest_macros/Cargo.toml
Expand Up @@ -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
Expand All @@ -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"

0 comments on commit aee4e34

Please sign in to comment.