Prepare v0.7.11, bump parking_lot to v0.9

This commit is contained in:
Francis Lalonde 2019-08-30 06:40:49 -04:00
parent ac9903a413
commit 9774ea7343
3 changed files with 6 additions and 3 deletions

View File

@ -1,5 +1,8 @@
# Latest changes + history
## version 0.7.11
- Make OnFlushCancel Send + Sync (@vorner)
## version 0.7.10
- Make OnFlushCancel public
- Add dyn keyword to dyn traits

View File

@ -1,6 +1,6 @@
[package]
name = "dipstick"
version = "0.7.10"
version = "0.7.11"
authors = ["Francis Lalonde <fralalonde@gmail.com>"]
description = """A fast, all-purpose metrics library decoupling instrumentation from reporting backends.
@ -25,7 +25,7 @@ atomic_refcell = "0.1"
skeptic = { version = "0.13", optional = true }
num = { version = "0.2", default-features = false }
crossbeam-channel = { version = "0.3", optional = true }
parking_lot = { version = "0.7", optional = true }
parking_lot = { version = "0.9", optional = true }
# FIXME required only for random seed for sampling
time = "0.1"

View File

@ -77,7 +77,7 @@ To use Dipstick in your project, add the following line to your `Cargo.toml`
in the `[dependencies]` section:
```toml
dipstick = "0.7.10"
dipstick = "0.7.11"
```
## External features