From f4f186470245eeebc04f0e8aafc2a1a45dae3f0b Mon Sep 17 00:00:00 2001 From: tyranron Date: Mon, 3 Jan 2022 15:55:38 +0200 Subject: [PATCH] Prepare 0.11.0 release --- CHANGELOG.md | 6 +++--- Cargo.toml | 4 ++-- book/src/output/json.md | 2 +- book/src/output/junit.md | 2 +- book/src/quickstart.md | 4 ++-- book/tests/Cargo.toml | 2 +- codegen/CHANGELOG.md | 4 ++-- codegen/Cargo.toml | 2 +- 8 files changed, 13 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4740803c..49b63408 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 6463a013..312a1d36 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cucumber" -version = "0.11.0-rc.1" +version = "0.11.0" edition = "2021" rust-version = "1.57" description = """\ @@ -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 } diff --git a/book/src/output/json.md b/book/src/output/json.md index f1134500..bed4bde7 100644 --- a/book/src/output/json.md +++ b/book/src/output/json.md @@ -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`]: diff --git a/book/src/output/junit.md b/book/src/output/junit.md index bfa11773..2060b0de 100644 --- a/book/src/output/junit.md +++ b/book/src/output/junit.md @@ -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`]: diff --git a/book/src/quickstart.md b/book/src/quickstart.md index 54dbf39f..6b6c47f5 100644 --- a/book/src/quickstart.md +++ b/book/src/quickstart.md @@ -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]] @@ -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]] diff --git a/book/tests/Cargo.toml b/book/tests/Cargo.toml index bff8ddf8..181036c4 100644 --- a/book/tests/Cargo.toml +++ b/book/tests/Cargo.toml @@ -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"] } diff --git a/codegen/CHANGELOG.md b/codegen/CHANGELOG.md index 16f902e5..700d705e 100644 --- a/codegen/CHANGELOG.md +++ b/codegen/CHANGELOG.md @@ -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) diff --git a/codegen/Cargo.toml b/codegen/Cargo.toml index db9d0cdd..f86512c0 100644 --- a/codegen/Cargo.toml +++ b/codegen/Cargo.toml @@ -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."