From e68fa57b7478eb8aa29970eb13e40bd552ecfb28 Mon Sep 17 00:00:00 2001 From: Pedro Fedricci Date: Tue, 12 Nov 2024 00:49:31 -0300 Subject: [PATCH] release: v0.2.2 --- CHANGELOG.md | 10 ++++++++-- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0fa563..aa6d22a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.2] - 2024-11-12 + +### Changed +- Reduce Rust MSRV from 1.70.0 to 1.65.0 ([`f2c4719`]) + +[`f2c4719`]: https://github.com/pedromfedricci/clhlock/commit/f2c471992f336a375988b6ebb7118fc0005ba2f6 + ## [0.2.1] - 2024-11-04 ### Added @@ -27,7 +34,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add Send/sync for node and guard - Update categories and keywords - ### Fixed - Improve test coverage - Improve relax testing @@ -45,4 +51,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add test coverage - Add nextest config -[unreleased]: https://github.com/pedromfedricci/clhlock/compare/v0.2.1..HEAD +[unreleased]: https://github.com/pedromfedricci/clhlock/compare/v0.2.2..HEAD diff --git a/Cargo.toml b/Cargo.toml index d26314c..2b84abe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ An implementation of Craig and, indenpendently, Magnussen, Landin, and Hagersten queue lock for mutual exclusion, referred to as CLH lock. """ name = "clhlock" -version = "0.2.1" +version = "0.2.2" edition = "2021" # NOTE: Rust 1.65 is required for GATs and let-else statements. rust-version = "1.65.0"