bump version to 0.9.0

This commit is contained in:
David Kellum 2019-07-11 09:19:02 -07:00
parent 7f00f4a0e6
commit d77726be76
3 changed files with 5 additions and 3 deletions

View File

@ -1,3 +1,5 @@
## parking_lot 0.9.0 (TBD)
## parking_lot 0.8.1 (2019-07-03, _yanked_)
- Re-export the lock_api crate. (#150)

View File

@ -1,6 +1,6 @@
[package]
name = "parking_lot"
version = "0.8.1"
version = "0.9.0"
authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
description = "More compact and efficient implementations of the standard synchronization primitives."
license = "Apache-2.0/MIT"

View File

@ -102,7 +102,7 @@ Add this to your `Cargo.toml`:
```toml
[dependencies]
parking_lot = "0.8"
parking_lot = "0.9"
```
and this to your crate root:
@ -115,7 +115,7 @@ To enable nightly-only features, add this to your `Cargo.toml` instead:
```toml
[dependencies]
parking_lot = {version = "0.8", features = ["nightly"]}
parking_lot = {version = "0.9", features = ["nightly"]}
```
The experimental deadlock detector can be enabled with the