diff --git a/CHANGELOG.md b/CHANGELOG.md index dae31a3..4cb2b25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,9 +8,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +_No unreleased changes in the pipeline at the moment_ + + +## [8.0.0] - 2024-06-21 + +### Added + +- Add `Output::peek_output_buffer()` method to get read-only access to the + output buffer from a shared reference to self. Thanks @tk70! + ### Changed - Bumped MSRV to 1.74 owing to new dependency requirements. +- Refactor CI workflow file to account for the latest GitHub CI oddities. ## [7.0.0] - 2023-10-22 @@ -292,7 +303,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 -[Unreleased]: https://github.com/HadrienG2/triple-buffer/compare/v7.0.0...HEAD +[Unreleased]: https://github.com/HadrienG2/triple-buffer/compare/v8.0.0...HEAD +[8.0.0]: https://github.com/HadrienG2/triple-buffer/compare/v7.0.0...v8.0.0 [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 diff --git a/Cargo.toml b/Cargo.toml index 4cb6fbd..7b284ba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ name = "triple_buffer" # - Roll an annotated git tag # - Add a github release # -version = "7.0.0" +version = "8.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/"