Skip to content

Commit 8061ce8

Browse files
committed
Release v7, add semver checks
1 parent f8c3202 commit 8061ce8

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,11 @@ jobs:
6161
- name: Check clippy lints
6262
run: cargo clippy -- -D warnings
6363

64+
- name: Check semver
65+
uses: obi1kenobi/cargo-semver-checks-action@v2
66+
with:
67+
rust-toolchain: manual
68+
6469

6570
# Run the tests on all supported OSes and Rust versions (main CI)
6671
test-contrib:

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## [Unreleased]
1010

11+
_There are no unreleased changes in the pipeline at the moment._
12+
13+
14+
## [7.0.0] - 2023-10-22
15+
1116
### Changed
1217

1318
- 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
285290

286291

287292

288-
[Unreleased]: https://github.com/HadrienG2/triple-buffer/compare/v6.2.0...HEAD
293+
[Unreleased]: https://github.com/HadrienG2/triple-buffer/compare/v7.0.0...HEAD
294+
[7.0.0]: https://github.com/HadrienG2/triple-buffer/compare/v6.2.0...v7.0.0
289295
[6.2.0]: https://github.com/HadrienG2/triple-buffer/compare/v6.1.0...v6.2.0
290296
[6.1.0]: https://github.com/HadrienG2/triple-buffer/compare/v6.0.0...v6.1.0
291297
[6.0.0]: https://github.com/HadrienG2/triple-buffer/compare/v5.0.6...v6.0.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
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 = "6.2.0"
14+
version = "7.0.0"
1515
authors = ["Hadrien G. <knights_of_ni@gmx.com>"]
1616
description = "An implementation of triple buffering, useful for sharing frequently updated data between threads"
1717
documentation = "https://docs.rs/triple_buffer/"

0 commit comments

Comments
 (0)