Skip to content

Commit bc72f02

Browse files
chore: release
1 parent 7bd09e2 commit bc72f02

File tree

4 files changed

+35
-5
lines changed

4 files changed

+35
-5
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
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)

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parking_lot"
3-
version = "0.12.3"
3+
version = "0.12.4"
44
authors = ["Amanieu d'Antras <[email protected]>"]
55
description = "More compact and efficient implementations of the standard synchronization primitives."
66
license = "MIT OR Apache-2.0"
@@ -19,8 +19,8 @@ rustdoc-args = ["--generate-link-to-definition"]
1919
features = ["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]
2626
rand = "0.8.3"

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parking_lot_core"
3-
version = "0.9.10"
3+
version = "0.9.11"
44
authors = ["Amanieu d'Antras <[email protected]>"]
55
description = "An advanced API for creating custom synchronization primitives."
66
license = "MIT OR Apache-2.0"

lock_api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lock_api"
3-
version = "0.4.12"
3+
version = "0.4.13"
44
authors = ["Amanieu d'Antras <[email protected]>"]
55
description = "Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std."
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)