Skip to content

Commit

Permalink
Release parking_lot 0.11.1 and lock_api 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Amanieu committed Nov 18, 2020
1 parent 7de94f9 commit 86969fd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## parking_lot 0.11.1, lock_api 0.4.2 (2020-11-18)

- Fix bounds on Send and Sync impls for lock guards. (#262)
- Fix incorrect memory ordering in `RwLock`. (#260)

## lock_api 0.4.1 (2020-07-06)

- Add `data_ptr` method to lock types to allow unsafely accessing the inner data
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parking_lot"
version = "0.11.0"
version = "0.11.1"

This comment has been minimized.

Copy link
@bkchr

bkchr Nov 18, 2020

You missed to upgrade the requirement on lock_api. This means anyone updating parking_lot will not get this.

This comment has been minimized.

Copy link
@Amanieu

Amanieu Nov 18, 2020

Author Owner

Cargo should automatically pick up the minor version bump with cargo update.

This comment has been minimized.

Copy link
@bkchr

bkchr Nov 20, 2020

Yes, but when you just update to parking_lot 0.11.1 nothing happens. Several projects just updates dependencies individually, because updating all of them isn't always a great idea.

authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
description = "More compact and efficient implementations of the standard synchronization primitives."
license = "Apache-2.0/MIT"
Expand Down
2 changes: 1 addition & 1 deletion lock_api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lock_api"
version = "0.4.1"
version = "0.4.2"
authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
description = "Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std."
license = "Apache-2.0/MIT"
Expand Down

0 comments on commit 86969fd

Please sign in to comment.