File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Changelog
2+
3+ All notable changes to this project will be documented in this file.
4+
5+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6+ and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7+
8+ ## [ Unreleased]
9+
10+ ## ` parking_lot ` - [ 0.12.4] ( https://github.com/Amanieu/parking_lot/compare/parking_lot-v0.12.3...parking_lot-v0.12.4 ) - 2025-05-29
11+
12+ ### Other
13+ - Use a single changelog with release-plz
14+ - Add release-plz for automatic releases
15+ - Fix parked upgraders potentially not being woken up after a write lock
16+ - Fix clearing ` PARKED_WRITER_BIT ` after a timeout
17+ - Check MSRV using cargo-msrv in CI
18+
19+ ## ` parking_lot_core ` - [ 0.9.11] ( https://github.com/Amanieu/parking_lot/compare/parking_lot_core-v0.9.10...parking_lot_core-v0.9.11 ) - 2025-05-29
20+
21+ ### Other
22+ - Check MSRV using cargo-msrv in CI
23+ - Use Release/Acquire ordering in thread_parker::windows::Backend::create
24+ - Remove warnings due to new lint on unknown cfgs
25+
26+ ## ` lock_api ` - [ 0.4.13] ( https://github.com/Amanieu/parking_lot/compare/lock_api-v0.4.12...lock_api-v0.4.13 ) - 2025-05-29
27+
28+ ### Other
29+ - Check MSRV using cargo-msrv in CI
30+ - Remove warnings due to new lint on unknown cfgs
131## parking_lot 0.12.3 (2024-05-24)
232
333- Export types provided by arc_lock feature (#442 )
Original file line number Diff line number Diff line change 11[package ]
22name = " parking_lot"
3- version = " 0.12.3 "
3+ version = " 0.12.4 "
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,8 +19,8 @@ rustdoc-args = ["--generate-link-to-definition"]
1919features = [" arc_lock" , " serde" , " deadlock_detection" ]
2020
2121[dependencies ]
22- parking_lot_core = { path = " core" , version = " 0.9.0 " }
23- lock_api = { path = " lock_api" , version = " 0.4.6 " }
22+ parking_lot_core = { path = " core" , version = " 0.9.11 " }
23+ lock_api = { path = " lock_api" , version = " 0.4.13 " }
2424
2525[dev-dependencies ]
2626rand = " 0.8.3"
Original file line number Diff line number Diff line change 11[package ]
22name = " parking_lot_core"
3- version = " 0.9.10 "
3+ version = " 0.9.11 "
44authors = [" Amanieu d'Antras <amanieu@gmail.com>" ]
55description = " An advanced API for creating custom synchronization primitives."
66license = " MIT OR Apache-2.0"
Original file line number Diff line number Diff line change 11[package ]
22name = " lock_api"
3- version = " 0.4.12 "
3+ version = " 0.4.13 "
44authors = [" Amanieu d'Antras <amanieu@gmail.com>" ]
55description = " Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std."
66license = " MIT OR Apache-2.0"
You can’t perform that action at this time.
0 commit comments