Skip to content

Commit

Permalink
Prepare 0.16.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
tyranron committed Nov 9, 2022
1 parent b21d03d commit d2aa9b6
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 12 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ All user visible changes to `cucumber` crate will be documented in this file. Th



## [0.16.0] · 2022-??-?? (unreleased)
## [0.16.0] · 2022-11-09
[0.16.0]: /../../tree/v0.16.0

[Diff](/../../compare/v0.15.3...v0.16.0) | [Milestone](/../../milestone/19)

### BC Breaks

- Bumped up [MSRV] to 1.65 for using `let`-`else` statements.
- Bumped up [MSRV] to 1.65 for using `let`-`else` statements. ([7f52d4a5])

### Added

Expand All @@ -25,6 +25,7 @@ All user visible changes to `cucumber` crate will be documented in this file. Th

[#241]: /../../issues/241
[#242]: /../../pull/242
[7f52d4a5]: /../../commit/7f52d4a5faa3b69bec6c7fb765b50455cf7802aa



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.15.3"
version = "0.16.0"
edition = "2021"
rust-version = "1.65"
description = """\
Expand Down Expand Up @@ -58,7 +58,7 @@ sealed = "0.4"

# "macros" feature dependencies.
anyhow = { version = "1.0.58", optional = true }
cucumber-codegen = { version = "0.15", path = "./codegen", optional = true }
cucumber-codegen = { version = "0.16", path = "./codegen", optional = true }
cucumber-expressions = { version = "0.2.1", features = ["into-regex"], optional = true }
inventory = { version = "0.3", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion book/src/output/intellij.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ IntelliJ Rust integration

Example below is set up to output with the default [`writer::Basic`] if there is no `--format=json` option, or with [`writer::Libtest`] otherwise.
```toml
cucumber = { version = "0.15", features = ["libtest"] }
cucumber = { version = "0.16", features = ["libtest"] }
```
```rust
# extern crate cucumber;
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.15", features = ["output-json"] }
cucumber = { version = "0.16", 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.15", features = ["output-junit"] }
cucumber = { version = "0.16", 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 @@ -8,7 +8,7 @@ To start, let's create a directory called `tests/` in the root of the project an
Add this to `Cargo.toml`:
```toml
[dev-dependencies]
cucumber = "0.15"
cucumber = "0.16"
futures = "0.3"

[[test]]
Expand Down Expand Up @@ -385,7 +385,7 @@ A contrived example, but it demonstrates that [step]s can be reused as long as t
Let's switch our runtime to `tokio`:
```toml
[dev-dependencies]
cucumber = "0.15"
cucumber = "0.16"
tokio = { version = "1.10", features = ["macros", "rt-multi-thread", "time"] }

[[test]]
Expand Down
6 changes: 4 additions & 2 deletions codegen/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,16 @@ All user visible changes to `cucumber-codegen` crate will be documented in this



## [0.16.0] · 2022-??-?? (unreleased)
## [0.16.0] · 2022-11-09
[0.16.0]: /../../tree/v0.16.0/codegen

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

### BC Breaks

- Bumped up [MSRV] to 1.65 for using `let`-`else` statements.
- Bumped up [MSRV] to 1.65 for using `let`-`else` statements. ([7f52d4a5])

[7f52d4a5]: /../../commit/7f52d4a5faa3b69bec6c7fb765b50455cf7802aa



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.15.3" # should be the same as main crate version
version = "0.16.0" # should be the same as main crate version
edition = "2021"
rust-version = "1.65"
description = "Code generation for `cucumber` crate."
Expand Down

0 comments on commit d2aa9b6

Please sign in to comment.