Skip to content

Commit a75875b

Browse files
committed
Release parking_lot 0.12.0, parking_lot_core 0.9.0, lock_api 0.4.6
1 parent 78a16dd commit a75875b

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## parking_lot 0.12.0, parking_lot_core 0.9.0, lock_api 0.4.6 (2022-01-28)
2+
3+
- The MSRV is bumped to 1.49.0.
4+
- Disabled eventual fairness on wasm32-unknown-unknown. (#302)
5+
- Added a rwlock method to report if lock is held exclusively. (#303)
6+
- Use new `asm!` macro. (#304)
7+
- Use windows-rs instead of winapi for faster builds. (#311)
8+
- Moved hardware lock elision support to a separate Cargo feature. (#313)
9+
- Removed used of deprecated `spin_loop_hint`. (#314)
10+
111
## parking_lot 0.11.2, parking_lot_core 0.8.4, lock_api 0.4.5 (2021-08-28)
212

313
- Fixed incorrect memory orderings on `RwLock` and `WordLock`. (#294, #292)

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parking_lot"
3-
version = "0.11.2"
3+
version = "0.12.0"
44
authors = ["Amanieu d'Antras <[email protected]>"]
55
description = "More compact and efficient implementations of the standard synchronization primitives."
66
license = "Apache-2.0/MIT"
@@ -11,8 +11,8 @@ categories = ["concurrency"]
1111
edition = "2018"
1212

1313
[dependencies]
14-
parking_lot_core = { path = "core", version = "0.8.4" }
15-
lock_api = { path = "lock_api", version = "0.4.5" }
14+
parking_lot_core = { path = "core", version = "0.9.0" }
15+
lock_api = { path = "lock_api", version = "0.4.6" }
1616

1717
[dev-dependencies]
1818
rand = "0.8.3"

core/Cargo.toml

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

lock_api/Cargo.toml

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

0 commit comments

Comments
 (0)