Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ env:
CARGO_INCREMENTAL: 0
RUSTFLAGS: -D warnings
RUSTDOCFLAGS: -D warnings
MINIMAL_RUST: 1.74.0 # Minimal Supported Rust Version
MINIMAL_RUST: 1.86.0 # Minimal Supported Rust Version

# Workarounds for windows "spurious network error".
# Try to remove them on the next MSRV bump.
Expand Down
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

_No unreleased changes in the pipeline at the moment._


## [9.0.0] - 2026-02-22

### Changed

- Turn `Input::input_buffer()` and `Output::output_buffer()` into read-only
- Turned `Input::input_buffer()` and `Output::output_buffer()` into read-only
accessors and deprecate `Output::peek_output_buffer()`, moving forward with
the plan set in issue #30 to eventually migrate towards an API naming
convention that matches `std` and other Rust libraries.

- Bumped MSRV to 1.86 owing to new dependency requirements.


## [8.1.1] - 2025-05-04
Expand Down Expand Up @@ -338,7 +343,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0



[Unreleased]: https://github.com/HadrienG2/triple-buffer/compare/v8.1.1...HEAD
[Unreleased]: https://github.com/HadrienG2/triple-buffer/compare/v9.0.0...HEAD
[9.0.0]: https://github.com/HadrienG2/triple-buffer/compare/v8.1.1...v9.0.0
[8.1.1]: https://github.com/HadrienG2/triple-buffer/compare/v8.1.0...v8.1.1
[8.1.0]: https://github.com/HadrienG2/triple-buffer/compare/v8.0.0...v8.1.0
[8.0.0]: https://github.com/HadrienG2/triple-buffer/compare/v7.0.0...v8.0.0
Expand Down
Loading