Skip to content

Commit f7d8fd2

Browse files
committed
Prepare 0.17.0 release
1 parent c0d9b1a commit f7d8fd2

File tree

9 files changed

+25
-13
lines changed

9 files changed

+25
-13
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ jobs:
160160
|| 'no' }}
161161

162162
test-book:
163-
name: test Book
163+
name: test (Book)
164164
strategy:
165165
fail-fast: false
166166
matrix:
@@ -211,7 +211,7 @@ jobs:
211211
#############
212212

213213
release-crate:
214-
name: release on crates.io
214+
name: release (crates.io)
215215
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
216216
needs: ["release-github"]
217217
runs-on: ubuntu-latest
@@ -233,7 +233,7 @@ jobs:
233233
--token ${{ secrets.CRATESIO_TOKEN }}
234234

235235
release-github:
236-
name: release on GitHub
236+
name: release (GitHub)
237237
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
238238
needs:
239239
- clippy
@@ -281,7 +281,7 @@ jobs:
281281
##########
282282

283283
deploy-book:
284-
name: deploy Book
284+
name: deploy (Book)
285285
if: ${{ github.ref == 'refs/heads/main'
286286
|| startsWith(github.ref, 'refs/tags/v') }}
287287
needs: ["test-book"]

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.17.0] · 2022-??-??
9+
## [0.17.0] · 2022-11-23
1010
[0.17.0]: /../../tree/v0.17.0
1111

1212
[Diff](/../../compare/v0.16.0...v0.17.0) | [Milestone](/../../milestone/20)

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cucumber"
3-
version = "0.16.0"
3+
version = "0.17.0"
44
edition = "2021"
55
rust-version = "1.65"
66
description = """\
@@ -58,7 +58,7 @@ sealed = "0.4"
5858

5959
# "macros" feature dependencies.
6060
anyhow = { version = "1.0.58", optional = true }
61-
cucumber-codegen = { version = "0.16", path = "./codegen", optional = true }
61+
cucumber-codegen = { version = "0.17", path = "./codegen", optional = true }
6262
cucumber-expressions = { version = "0.2.1", features = ["into-regex"], optional = true }
6363
inventory = { version = "0.3", optional = true }
6464

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 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.16", features = ["libtest"] }
8+
cucumber = { version = "0.17", 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.16", features = ["output-json"] }
8+
cucumber = { version = "0.17", 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.16", features = ["output-junit"] }
8+
cucumber = { version = "0.17", 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.16"
11+
cucumber = "0.17"
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.16"
388+
cucumber = "0.17"
389389
tokio = { version = "1.10", features = ["macros", "rt-multi-thread", "time"] }
390390

391391
[[test]]

codegen/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ All user visible changes to `cucumber-codegen` crate will be documented in this
66

77

88

9+
## [0.17.0] · 2022-11-23
10+
[0.17.0]: /../../tree/v0.17.0/codegen
11+
12+
[Milestone](/../../milestone/20)
13+
14+
### Version bump only
15+
16+
See `cucumber` crate [changelog](https://github.com/cucumber-rs/cucumber/blob/v0.17.0/CHANGELOG.md).
17+
18+
19+
20+
921
## [0.16.0] · 2022-11-09
1022
[0.16.0]: /../../tree/v0.16.0/codegen
1123

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.16.0" # should be the same as main crate version
3+
version = "0.17.0" # should be the same as main crate version
44
edition = "2021"
55
rust-version = "1.65"
66
description = "Code generation for `cucumber` crate."

0 commit comments

Comments
 (0)