diff --git a/CHANGELOG.md b/CHANGELOG.md index c7440b7..43c0cd5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,44 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.1.10](https://github.com/Amanieu/thread_local-rs/compare/v1.1.9...v1.1.10) - 2026-07-08 + +### Other + +- Fix compile error in the nightly feature (new.id -> new.id()) +- Switch to `thread::scope` for example +- Fix integer underflow in `RawIter::size_hint` +- Fix warning +- Fix MSRV build +- Shrink unsafe block size and extra empty lines +- Formatting +- Update safety comments +- Formatting +- Apply suggestions from code review +- Newline +- Don't ignore Cargo.lock +- Review feedback +- Merge branch 'master' into cleanup +- Remove unnecessary needs_drop check +- Fail CI if Clippy raises any warnings +- Revert changes to allocation. +- Gratuitous safety comments +- Start writing safety comments +- Use MaybeUninit::asssume_init_{mut, ref} +- Use the lastest Rust stable for non-MSRV CI +- Don't change the criterion version +- Fix benches' Cargo.toml +- Run benches in the new crate +- Remove extra all() +- Separate benches into it own crate to keep it isolated from MSRV +- Slim down CI jobs +- Fix formatting +- Set up CI job for testing agaisnt the MSRV +- MSRV-based cleanup +- do not register a thread-local destructor in ThreadLocal::get +- Update cached.rs +- Update lib.rs + ## [1.1.9](https://github.com/Amanieu/thread_local-rs/compare/v1.1.8...v1.1.9) - 2025-06-12 ### Other diff --git a/Cargo.lock b/Cargo.lock index 64965e7..92bc6b3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10,7 +10,7 @@ checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268" [[package]] name = "thread_local" -version = "1.1.9" +version = "1.1.10" dependencies = [ "cfg-if", ] diff --git a/Cargo.toml b/Cargo.toml index 13b498b..fd61b13 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thread_local" -version = "1.1.9" +version = "1.1.10" authors = ["Amanieu d'Antras "] description = "Per-object thread-local storage" documentation = "https://docs.rs/thread_local/"