Skip to content

Commit 27e1e70

Browse files
authored
Merge pull request #39 from HadrienG2/prepare-v8.1
Prepare v8.1
2 parents e9cb738 + e359a3a commit 27e1e70

File tree

5 files changed

+171
-80
lines changed

5 files changed

+171
-80
lines changed

.github/workflows/ci.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,11 @@ jobs:
7474
- name: Check clippy lints
7575
run: cargo clippy --workspace --all-targets -- -D warnings
7676

77-
- name: Set up cargo-binstall
78-
run: curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash
77+
- name: Install cargo-machete
78+
uses: taiki-e/install-action@cargo-machete
7979

8080
- name: Look for unused dependencies with cargo-machete
81-
run: |
82-
cargo binstall -y cargo-machete
83-
cargo machete
81+
run: cargo machete
8482

8583
- name: Check semver
8684
# Not guaranteed to run on nightly, so we use the separate job below

CHANGELOG.md

+20-2
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,29 @@ 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+
## [8.1.0] - 2025-02-02
15+
16+
### Added
17+
18+
- Add `Input::input_buffer_publisher()` method to provide an RAII-based
19+
alternative to the low-level `input_buffer()`/`publish()` interface. Thanks
20+
@crop2000 !
21+
22+
### Changed
23+
24+
- Rename `Input::input_buffer()` to `Input::input_buffer_mut()`, keeping a
25+
deprecated alias for now, and do the same for `Output::output_buffer()`. This
26+
is the start of a gradual deprecation process whose end goal is to eventually
27+
follow the standard Rust accessor naming convention (`input_buffer(&self) ->
28+
&T`, `input_buffer_mut(&mut self) -> &mut T`, same thing on the output side).
29+
30+
1431
## [8.0.0] - 2024-06-21
1532

1633
### Added
1734

1835
- Add `Output::peek_output_buffer()` method to get read-only access to the
19-
output buffer from a shared reference to self. Thanks @tk70!
36+
output buffer from a shared reference to self. Thanks @tk70 !
2037

2138
### Changed
2239

@@ -303,7 +320,8 @@ _No unreleased changes in the pipeline at the moment_
303320

304321

305322

306-
[Unreleased]: https://github.com/HadrienG2/triple-buffer/compare/v8.0.0...HEAD
323+
[Unreleased]: https://github.com/HadrienG2/triple-buffer/compare/v8.1.0...HEAD
324+
[8.1.0]: https://github.com/HadrienG2/triple-buffer/compare/v8.0.0...v8.1.0
307325
[8.0.0]: https://github.com/HadrienG2/triple-buffer/compare/v7.0.0...v8.0.0
308326
[7.0.0]: https://github.com/HadrienG2/triple-buffer/compare/v6.2.0...v7.0.0
309327
[6.2.0]: https://github.com/HadrienG2/triple-buffer/compare/v6.1.0...v6.2.0

Cargo.toml

+1-1
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.0.0"
14+
version = "8.1.0"
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/"

benches/benchmarks.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pub fn benchmark(c: &mut Criterion) {
66

77
{
88
let mut uncontended = c.benchmark_group("uncontended");
9-
uncontended.bench_function("read output", |b| b.iter(|| *output.output_buffer()));
9+
uncontended.bench_function("read output", |b| b.iter(|| *output.peek_output_buffer()));
1010
uncontended.bench_function("clean update", |b| {
1111
b.iter(|| {
1212
output.update();
@@ -15,7 +15,7 @@ pub fn benchmark(c: &mut Criterion) {
1515
uncontended.bench_function("clean receive", |b| b.iter(|| *output.read()));
1616
uncontended.bench_function("write input", |b| {
1717
b.iter(|| {
18-
*input.input_buffer() = black_box(0);
18+
*input.input_buffer_mut() = black_box(0);
1919
})
2020
});
2121
uncontended.bench_function("publish", |b| {
@@ -56,7 +56,7 @@ pub fn benchmark(c: &mut Criterion) {
5656
|| {
5757
read_contended.bench_function("write input", |b| {
5858
b.iter(|| {
59-
*input.input_buffer() = black_box(0);
59+
*input.input_buffer_mut() = black_box(0);
6060
})
6161
});
6262
read_contended.bench_function("publish", |b| {
@@ -79,7 +79,7 @@ pub fn benchmark(c: &mut Criterion) {
7979
|| input.write(black_box(0)),
8080
|| {
8181
write_contended
82-
.bench_function("read output", |b| b.iter(|| *output.output_buffer()));
82+
.bench_function("read output", |b| b.iter(|| *output.peek_output_buffer()));
8383
write_contended.bench_function("update", |b| {
8484
b.iter(|| {
8585
output.update();

0 commit comments

Comments
 (0)