From 126a9e487f4da17750220081a2c484c316d8765a Mon Sep 17 00:00:00 2001 From: tyranron Date: Tue, 26 Oct 2021 20:03:43 +0300 Subject: [PATCH] Prepare 0.10.0 release --- .github/workflows/ci.yml | 10 ++++++---- CHANGELOG.md | 4 ++-- Cargo.toml | 2 +- codegen/CHANGELOG.md | 4 +++- 4 files changed, 12 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 477eb5e0..260eaa84 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -81,6 +81,8 @@ jobs: ${{ matrix.feature != '' && format('--features {0}', matrix.feature) || '' }} + env: + RUSTFLAGS: -D warnings msrv: name: MSRV @@ -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 }} diff --git a/CHANGELOG.md b/CHANGELOG.md index c560839a..afb0d757 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.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 diff --git a/Cargo.toml b/Cargo.toml index 2880b869..c2f389dd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 diff --git a/codegen/CHANGELOG.md b/codegen/CHANGELOG.md index 3b32fa0d..9a966599 100644 --- a/codegen/CHANGELOG.md +++ b/codegen/CHANGELOG.md @@ -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`.