diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 99a82d6..96bade6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,6 +61,11 @@ jobs: - name: Check clippy lints run: cargo clippy -- -D warnings + - name: Check semver + uses: obi1kenobi/cargo-semver-checks-action@v2 + with: + rust-toolchain: manual + # Run the tests on all supported OSes and Rust versions (main CI) test-contrib: diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ecdc4e..efcd820 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +_There are no unreleased changes in the pipeline at the moment._ + + +## [7.0.0] - 2023-10-22 + ### Changed - Bumped MSRV to 1.70 owing to new dependency requirements. @@ -285,7 +290,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 -[Unreleased]: https://github.com/HadrienG2/triple-buffer/compare/v6.2.0...HEAD +[Unreleased]: https://github.com/HadrienG2/triple-buffer/compare/v7.0.0...HEAD +[7.0.0]: https://github.com/HadrienG2/triple-buffer/compare/v6.2.0...v7.0.0 [6.2.0]: https://github.com/HadrienG2/triple-buffer/compare/v6.1.0...v6.2.0 [6.1.0]: https://github.com/HadrienG2/triple-buffer/compare/v6.0.0...v6.1.0 [6.0.0]: https://github.com/HadrienG2/triple-buffer/compare/v5.0.6...v6.0.0 diff --git a/Cargo.toml b/Cargo.toml index 9697c49..78c70bb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ name = "triple_buffer" # - Roll an annotated git tag # - Add a github release # -version = "6.2.0" +version = "7.0.0" authors = ["Hadrien G. "] description = "An implementation of triple buffering, useful for sharing frequently updated data between threads" documentation = "https://docs.rs/triple_buffer/"