Skip to content

Commit

Permalink
Prepare 0.10.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
tyranron committed Oct 26, 2021
1 parent b50bf94 commit 126a9e4
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ jobs:
${{ matrix.feature != '<none>'
&& format('--features {0}', matrix.feature)
|| '' }}
env:
RUSTFLAGS: -D warnings

msrv:
name: MSRV
Expand Down Expand Up @@ -235,15 +237,15 @@ jobs:
toolchain: stable

- name: Publish `cucumber-codegen` crate
run: cargo publish --token ${{ secrets.CRATESIO_TOKEN }}
working-directory: ./codegen
run: cargo publish -p cucumber-codegen
--token ${{ secrets.CRATESIO_TOKEN }}

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

- name: Publish `cucumber` crate
run: cargo publish --token ${{ secrets.CRATESIO_TOKEN }}
working-directory: ./
run: cargo publish -p cucumber
--token ${{ secrets.CRATESIO_TOKEN }}



Expand Down
4 changes: 2 additions & 2 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.10.0] · 2021-??-??
## [0.10.0] · 2021-10-26
[0.10.0]: /../../tree/v0.10.0

[Diff](/../../compare/v0.9.0...v0.10.0)
[Diff](/../../compare/v0.9.0...v0.10.0) | [Milestone](/../../milestone/2)

### BC Breaks

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ repository = "https://github.com/cucumber-rs/cucumber"
readme = "README.md"
categories = ["asynchronous", "development-tools::testing"]
keywords = ["cucumber", "testing", "bdd", "atdd", "async"]
include = ["/src/", "/LICENSE-*", "/README.md", "/CHANGELOG.md"]
include = ["/src/", "/tests/", "/LICENSE-*", "/README.md", "/CHANGELOG.md"]

[package.metadata.docs.rs]
all-features = true
Expand Down
4 changes: 3 additions & 1 deletion codegen/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ All user visible changes to `cucumber-codegen` crate will be documented in this



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

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

### BC Breaks

- Renamed crate to `cucumber-codegen`.
Expand Down

0 comments on commit 126a9e4

Please sign in to comment.