Skip to content

Commit e37921c

Browse files
committed
Switch to edition 2021 and prepare for a minor release
1 parent 168eee7 commit e37921c

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
_No unreleased changes in the pipeline at the moment_
1212

1313

14+
15+
## [8.1.1] - 2025-05-04
16+
17+
### Changed
18+
19+
- Switched to edition 2021 since the current MSRV allows for it
20+
21+
### Fixed
22+
23+
- Updated README to reflect current API
24+
- Commit lockfile to avoid surprise semver/MSRV breakage from deps
25+
26+
1427
## [8.1.0] - 2025-02-02
1528

1629
### Added
@@ -320,7 +333,8 @@ _No unreleased changes in the pipeline at the moment_
320333

321334

322335

323-
[Unreleased]: https://github.com/HadrienG2/triple-buffer/compare/v8.1.0...HEAD
336+
[Unreleased]: https://github.com/HadrienG2/triple-buffer/compare/v8.1.1...HEAD
337+
[8.1.1]: https://github.com/HadrienG2/triple-buffer/compare/v8.1.0...v8.1.1
324338
[8.1.0]: https://github.com/HadrienG2/triple-buffer/compare/v8.0.0...v8.1.0
325339
[8.0.0]: https://github.com/HadrienG2/triple-buffer/compare/v7.0.0...v8.0.0
326340
[7.0.0]: https://github.com/HadrienG2/triple-buffer/compare/v6.2.0...v7.0.0

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ name = "triple_buffer"
1111
# - Roll an annotated git tag
1212
# - Add a github release
1313
#
14-
version = "8.1.0"
14+
version = "8.1.1"
1515
authors = ["Hadrien G. <[email protected]>"]
1616
description = "An implementation of triple buffering, useful for sharing frequently updated data between threads"
1717
documentation = "https://docs.rs/triple_buffer/"
@@ -20,7 +20,7 @@ readme = "README.md"
2020
keywords = [ "synchronization", "spsc", "multithreading", "non-blocking", "wait-free" ]
2121
categories = [ "algorithms", "asynchronous", "concurrency", "data-structures" ]
2222
license = "MPL-2.0"
23-
edition = "2018"
23+
edition = "2021"
2424
rust-version = "1.74"
2525

2626
[badges]

0 commit comments

Comments
 (0)