Skip to content

Commit d6083a2

Browse files
committed
Prepare 0.20.0 release (#292)
Additionally: - upgrade `lazy-regex` crate to 3.0 version
1 parent d7179de commit d6083a2

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ All user visible changes to `cucumber` crate will be documented in this file. Th
66

77

88

9-
## [0.20.0] · 2023-??-?? (unreleased)
9+
## [0.20.0] · 2023-07-10
1010
[0.20.0]: /../../tree/v0.20.0
1111

1212
[Diff](/../../compare/v0.19.1...v0.20.0) | [Milestone](/../../milestone/24)

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cucumber"
3-
version = "0.19.1"
3+
version = "0.20.0"
44
edition = "2021"
55
rust-version = "1.70"
66
description = """\
@@ -52,7 +52,7 @@ gherkin = "0.13"
5252
globwalk = "0.8.1"
5353
humantime = "2.1"
5454
itertools = "0.11"
55-
lazy-regex = "2.5"
55+
lazy-regex = "3.0"
5656
linked-hash-map = "0.5.3"
5757
once_cell = "1.13"
5858
pin-project = "1.0"
@@ -62,7 +62,7 @@ smart-default = "0.7.1"
6262

6363
# "macros" feature dependencies.
6464
anyhow = { version = "1.0.58", optional = true }
65-
cucumber-codegen = { version = "0.19", path = "./codegen", optional = true }
65+
cucumber-codegen = { version = "0.20", path = "./codegen", optional = true }
6666
cucumber-expressions = { version = "0.3", features = ["into-regex"], optional = true }
6767
inventory = { version = "0.3", optional = true }
6868

book/src/output/intellij.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ IntelliJ Rust (`libtest`) integration
55

66
Example below is set up to output with the default [`writer::Basic`] if there is no `--format=json` option, or with [`writer::Libtest`] otherwise.
77
```toml
8-
cucumber = { version = "0.19", features = ["libtest"] }
8+
cucumber = { version = "0.20", features = ["libtest"] }
99
```
1010
```rust
1111
# extern crate cucumber;

book/src/output/json.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Cucumber JSON format
55

66
This requires `output-json` feature to be enabled in `Cargo.toml`:
77
```toml
8-
cucumber = { version = "0.19", features = ["output-json"] }
8+
cucumber = { version = "0.20", features = ["output-json"] }
99
```
1010

1111
And configuring output to [`writer::Json`]:

book/src/output/junit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ JUnit XML report
55

66
This requires `output-junit` feature to be enabled in `Cargo.toml`:
77
```toml
8-
cucumber = { version = "0.19", features = ["output-junit"] }
8+
cucumber = { version = "0.20", features = ["output-junit"] }
99
```
1010

1111
And configuring output to [`writer::JUnit`]:

book/src/quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ To start, let's create a directory called `tests/` in the root of the project an
88
Add this to `Cargo.toml`:
99
```toml
1010
[dev-dependencies]
11-
cucumber = "0.19"
11+
cucumber = "0.20"
1212
futures = "0.3"
1313

1414
[[test]]
@@ -385,7 +385,7 @@ A contrived example, but it demonstrates that [step]s can be reused as long as t
385385
Let's switch our runtime to `tokio`:
386386
```toml
387387
[dev-dependencies]
388-
cucumber = "0.19"
388+
cucumber = "0.20"
389389
tokio = { version = "1.10", features = ["macros", "rt-multi-thread", "time"] }
390390

391391
[[test]]

codegen/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ All user visible changes to `cucumber-codegen` crate will be documented in this
66

77

88

9-
## [0.20.0] · 2023-??-?? (unreleased)
9+
## [0.20.0] · 2023-07-10
1010
[0.20.0]: /../../tree/v0.20.0/codegen
1111

1212
[Milestone](/../../milestone/24)

codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cucumber-codegen"
3-
version = "0.19.1" # should be the same as main crate version
3+
version = "0.20.0" # should be the same as main crate version
44
edition = "2021"
55
rust-version = "1.70"
66
description = "Code generation for `cucumber` crate."

0 commit comments

Comments
 (0)