File tree Expand file tree Collapse file tree 4 files changed +35
-5
lines changed Expand file tree Collapse file tree 4 files changed +35
-5
lines changed 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
1
31
## parking_lot 0.12.3 (2024-05-24)
2
32
3
33
- Export types provided by arc_lock feature (#442 )
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " parking_lot"
3
- version = " 0.12.3 "
3
+ version = " 0.12.4 "
4
4
authors = [
" Amanieu d'Antras <[email protected] >" ]
5
5
description = " More compact and efficient implementations of the standard synchronization primitives."
6
6
license = " MIT OR Apache-2.0"
@@ -19,8 +19,8 @@ rustdoc-args = ["--generate-link-to-definition"]
19
19
features = [" arc_lock" , " serde" , " deadlock_detection" ]
20
20
21
21
[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 " }
24
24
25
25
[dev-dependencies ]
26
26
rand = " 0.8.3"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " parking_lot_core"
3
- version = " 0.9.10 "
3
+ version = " 0.9.11 "
4
4
authors = [
" Amanieu d'Antras <[email protected] >" ]
5
5
description = " An advanced API for creating custom synchronization primitives."
6
6
license = " MIT OR Apache-2.0"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " lock_api"
3
- version = " 0.4.12 "
3
+ version = " 0.4.13 "
4
4
authors = [
" Amanieu d'Antras <[email protected] >" ]
5
5
description = " Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std."
6
6
license = " MIT OR Apache-2.0"
You can’t perform that action at this time.
0 commit comments