Skip to content

Commit 761a4d5

Browse files
committed
Bump versions of all crates
1 parent 87a5744 commit 761a4d5

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## parking_lot 0.10.1, parking_lot_core 0.7.1, lock_api 0.3.4 (2020-04-10)
2+
3+
- Add methods to construct `Mutex`, `RwLock`, etc in a `const` context. (#217)
4+
- Add `FairMutex` which always uses fair unlocking. (#204)
5+
- Fixed panic with deadlock detection on macOS. (#203)
6+
- Fixed incorrect synchronization in `create_hashtable`. (#210)
7+
- Use `llvm_asm!` instead of the deprecated `asm!`. (#223)
8+
9+
## lock_api 0.3.3 (2020-01-04)
10+
11+
- Deprecate unsound `MappedRwLockWriteGuard::downgrade` (#198)
12+
113
## parking_lot 0.10.0, parking_lot_core 0.7.0, lock_api 0.3.2 (2019-11-25)
214

315
- Upgrade smallvec dependency to 1.0 in parking_lot_core.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parking_lot"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
55
description = "More compact and efficient implementations of the standard synchronization primitives."
66
license = "Apache-2.0/MIT"

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.7.0"
3+
version = "0.7.1"
44
authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
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.3.3"
3+
version = "0.3.4"
44
authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
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)