Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,43 @@ 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-02-18

### Other

- 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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "thread_local"
version = "1.1.9"
version = "1.1.10"
authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
description = "Per-object thread-local storage"
documentation = "https://docs.rs/thread_local/"
Expand Down