Skip to content

Commit 126a9e4

Browse files
committed
Prepare 0.10.0 release
1 parent b50bf94 commit 126a9e4

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ jobs:
8181
${{ matrix.feature != '<none>'
8282
&& format('--features {0}', matrix.feature)
8383
|| '' }}
84+
env:
85+
RUSTFLAGS: -D warnings
8486

8587
msrv:
8688
name: MSRV
@@ -235,15 +237,15 @@ jobs:
235237
toolchain: stable
236238

237239
- name: Publish `cucumber-codegen` crate
238-
run: cargo publish --token ${{ secrets.CRATESIO_TOKEN }}
239-
working-directory: ./codegen
240+
run: cargo publish -p cucumber-codegen
241+
--token ${{ secrets.CRATESIO_TOKEN }}
240242

241243
- name: Wait crates.io index is updated
242244
run: sleep 120
243245

244246
- name: Publish `cucumber` crate
245-
run: cargo publish --token ${{ secrets.CRATESIO_TOKEN }}
246-
working-directory: ./
247+
run: cargo publish -p cucumber
248+
--token ${{ secrets.CRATESIO_TOKEN }}
247249

248250

249251

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ All user visible changes to `cucumber` crate will be documented in this file. Th
66

77

88

9-
## [0.10.0] · 2021-??-??
9+
## [0.10.0] · 2021-10-26
1010
[0.10.0]: /../../tree/v0.10.0
1111

12-
[Diff](/../../compare/v0.9.0...v0.10.0)
12+
[Diff](/../../compare/v0.9.0...v0.10.0) | [Milestone](/../../milestone/2)
1313

1414
### BC Breaks
1515

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ repository = "https://github.com/cucumber-rs/cucumber"
1919
readme = "README.md"
2020
categories = ["asynchronous", "development-tools::testing"]
2121
keywords = ["cucumber", "testing", "bdd", "atdd", "async"]
22-
include = ["/src/", "/LICENSE-*", "/README.md", "/CHANGELOG.md"]
22+
include = ["/src/", "/tests/", "/LICENSE-*", "/README.md", "/CHANGELOG.md"]
2323

2424
[package.metadata.docs.rs]
2525
all-features = true

codegen/CHANGELOG.md

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

77

88

9-
## [0.10.0] · 2021-??-??
9+
## [0.10.0] · 2021-10-26
1010
[0.10.0]: /../../tree/v0.10.0/codegen
1111

12+
[Milestone](/../../milestone/2)
13+
1214
### BC Breaks
1315

1416
- Renamed crate to `cucumber-codegen`.

0 commit comments

Comments
 (0)