Skip to content

Commit

Permalink
Release lock_api 0.4.11 and parking_lot_core 0.9.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Amanieu committed Oct 17, 2023
1 parent 8e9b3b9 commit 8d92826
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## parking_lot_core 0.9.9, lock_api 0.4.11 (2023-06-05)

- Fixed `RwLockUpgradeableReadGuard::with_upgraded`. (#393)
- Fixed `ReentrantMutex::bump` lock count. (#390)
- Added methods to unsafely create a lock guard out of thin air. (#403)
- Added support for Apple tvOS. (#405)

## parking_lot_core 0.9.8, lock_api 0.4.10 (2023-06-05)

- Mark guards with `#[clippy::has_significant_drop]` (#369, #371)
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parking_lot_core"
version = "0.9.8"
version = "0.9.9"
authors = ["Amanieu d'Antras <[email protected]>"]
description = "An advanced API for creating custom synchronization primitives."
license = "MIT OR Apache-2.0"
Expand Down
3 changes: 2 additions & 1 deletion lock_api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
[package]
name = "lock_api"
version = "0.4.10"
version = "0.4.11"
authors = ["Amanieu d'Antras <[email protected]>"]
description = "Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std."
license = "MIT OR Apache-2.0"
repository = "https://github.com/Amanieu/parking_lot"
keywords = ["mutex", "rwlock", "lock", "no_std"]
categories = ["concurrency", "no-std"]
edition = "2018"
rust-version = "1.49.0"

[package.metadata.docs.rs]
all-features = true
Expand Down

0 comments on commit 8d92826

Please sign in to comment.