diff --git a/CHANGELOG.md b/CHANGELOG.md index d595e1f..25caa79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.5](https://github.com/zetanumbers/scope-lock/compare/v0.2.4...v0.2.5) - 2024-06-02 + +### Added +- add new Extender methods which don't use dynamic dispatch +- add unchecked versions of extend functions +- pointer_like traits added + +### Fixed +- drop reference guard after extended value is dropped + +### Other +- remove old empty files +- disable stacked borrows on tree borrows check +- add test for a specific data race error on miri +- remove unused pub(crate) +- update parking_lot in Cargo.lock +- swap order of tree borrows and stack borrows tests +- set minimal supported rust version to 1.66 +- revert usage of ptr::cast_const and cast_mut +- modularize code +- run miri tests with tree borrows model too +- move msrv and separate miri test into separate push workflow +- run minimal version check on any push + ## [0.2.4](https://github.com/zetanumbers/scope-lock/compare/v0.2.3...v0.2.4) - 2024-05-29 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 2065a32..20e576d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -70,7 +70,7 @@ dependencies = [ [[package]] name = "scope-lock" -version = "0.2.4" +version = "0.2.5" dependencies = [ "parking_lot", ] diff --git a/Cargo.toml b/Cargo.toml index 2701c95..a9b10d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scope-lock" -version = "0.2.4" +version = "0.2.5" edition = "2021" # TODO: elaborate description = "Safely extend lifetimes"