Skip to content

Commit

Permalink
Prepare 0.11.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
tyranron committed Jan 3, 2022
1 parent 7f6ab42 commit f4f1864
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ All user visible changes to `cucumber` crate will be documented in this file. Th



## [0.11.0-rc.1] · 2021-12-28
[0.11.0-rc.1]: /../../tree/v0.11.0-rc.1
## [0.11.0] · 2022-01-03
[0.11.0]: /../../tree/v0.11.0

[Diff](/../../compare/v0.10.2...v0.11.0-rc.1) | [Milestone](/../../milestone/3)
[Diff](/../../compare/v0.10.2...v0.11.0) | [Milestone](/../../milestone/3)

### BC Breaks

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cucumber"
version = "0.11.0-rc.1"
version = "0.11.0"
edition = "2021"
rust-version = "1.57"
description = """\
Expand Down Expand Up @@ -53,7 +53,7 @@ regex = "1.5"
sealed = "0.3"

# "macros" feature dependencies.
cucumber-codegen = { version = "0.11.0-rc.1", path = "./codegen", optional = true }
cucumber-codegen = { version = "0.11", path = "./codegen", optional = true }
cucumber-expressions = { version = "0.1.0", features = ["into-regex"], optional = true }
inventory = { version = "0.2", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion book/src/output/json.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Cucumber JSON format

This requires `output-json` feature to be enabled in `Cargo.toml`:
```toml
cucumber = { version = "0.11.0-rc.1", features = ["output-json"] }
cucumber = { version = "0.11", features = ["output-json"] }
```

And configuring output to [`writer::Json`]:
Expand Down
2 changes: 1 addition & 1 deletion book/src/output/junit.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ JUnit XML report

This requires `output-junit` feature to be enabled in `Cargo.toml`:
```toml
cucumber = { version = "0.11.0-rc.1", features = ["output-junit"] }
cucumber = { version = "0.11", features = ["output-junit"] }
```

And configuring output to [`writer::JUnit`]:
Expand Down
4 changes: 2 additions & 2 deletions book/src/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Add this to `Cargo.toml`:
```toml
[dev-dependencies]
async-trait = "0.1"
cucumber = "0.11.0-rc.1"
cucumber = "0.11"
futures = "0.3"

[[test]]
Expand Down Expand Up @@ -425,7 +425,7 @@ Let's switch our runtime to `tokio`:
```toml
[dev-dependencies]
async-trait = "0.1"
cucumber = "0.11.0-rc.1"
cucumber = "0.11"
tokio = { version = "1.10", features = ["macros", "rt-multi-thread", "time"] }

[[test]]
Expand Down
2 changes: 1 addition & 1 deletion book/tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ publish = false
[dependencies]
async-trait = "0.1"
clap = { version = "3.0", features = ["derive"] }
cucumber = { version = "0.11.0-rc.1", path = "../..", features = ["output-json", "output-junit"] }
cucumber = { version = "0.11", path = "../..", features = ["output-json", "output-junit"] }
futures = "0.3"
humantime = "2.1"
once_cell = { version = "1.8", features = ["parking_lot"] }
Expand Down
4 changes: 2 additions & 2 deletions codegen/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ All user visible changes to `cucumber-codegen` crate will be documented in this



## [0.11.0-rc.1] · 2021-12-28
[0.11.0-rc.1]: /../../tree/v0.11.0-rc.1/codegen
## [0.11.0] · 2022-01-03
[0.11.0]: /../../tree/v0.11.0/codegen

[Milestone](/../../milestone/3)

Expand Down
2 changes: 1 addition & 1 deletion codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cucumber-codegen"
version = "0.11.0-rc.1" # should be the same as main crate version
version = "0.11.0" # should be the same as main crate version
edition = "2021"
rust-version = "1.57"
description = "Code generation for `cucumber` crate."
Expand Down

0 comments on commit f4f1864

Please sign in to comment.