File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## ` parking_lot ` - [ 0.12.6] ( https://github.com/Amanieu/parking_lot/compare/parking_lot-v0.12.5...parking_lot-v0.12.6 ) - 2025-12-17
11+
12+ ### Other
13+ - Use postcard instead of bincode in tests
14+ - add Miri CI job
15+ - Merge pull request #504 from Amanieu/fix_test_129
16+ - Fix test_issue_129 under Miri
17+ - condvar test: remove outdated comment
18+
19+ ## ` parking_lot_core ` - [ 0.9.13] ( https://github.com/Amanieu/parking_lot/compare/parking_lot_core-v0.9.12...parking_lot_core-v0.9.13 ) - 2025-12-17
20+
21+ ### Other
22+ - Use postcard instead of bincode in tests
23+ - use AtomicPtr (with polyfill for operations missing on old Rust)
24+
1025## ` parking_lot ` - [ 0.12.5] ( https://github.com/Amanieu/parking_lot/compare/parking_lot-v0.12.4...parking_lot-v0.12.5 ) - 2025-09-30
1126
1227- Bumped MSRV to 1.71
Original file line number Diff line number Diff line change 11[package ]
22name = " parking_lot"
3- version = " 0.12.5 "
3+ version = " 0.12.6 "
44authors = [" Amanieu d'Antras <amanieu@gmail.com>" ]
55description = " More compact and efficient implementations of the standard synchronization primitives."
66license = " MIT OR Apache-2.0"
@@ -19,7 +19,7 @@ rustdoc-args = ["--generate-link-to-definition"]
1919features = [" arc_lock" , " serde" , " deadlock_detection" ]
2020
2121[dependencies ]
22- parking_lot_core = { path = " core" , version = " 0.9.12 " }
22+ parking_lot_core = { path = " core" , version = " 0.9.13 " }
2323lock_api = { path = " lock_api" , version = " 0.4.14" }
2424
2525[dev-dependencies ]
Original file line number Diff line number Diff line change 11[package ]
22name = " parking_lot_core"
3- version = " 0.9.12 "
3+ version = " 0.9.13 "
44authors = [" Amanieu d'Antras <amanieu@gmail.com>" ]
55description = " An advanced API for creating custom synchronization primitives."
66license = " MIT OR Apache-2.0"
You can’t perform that action at this time.
0 commit comments