From 0d16bfaaaae69fae49f0e6d4b1463794f1f0199e Mon Sep 17 00:00:00 2001 From: Mazdak Farrokhzad Date: Fri, 17 Jan 2020 08:39:46 +0100 Subject: [PATCH] release proptest 0.9.5 --- book/src/proptest/getting-started.md | 2 +- proptest/CHANGELOG.md | 6 ++++++ proptest/Cargo.toml | 2 +- proptest/README.md | 2 +- proptest/src/lib.rs | 1 + 5 files changed, 10 insertions(+), 3 deletions(-) diff --git a/book/src/proptest/getting-started.md b/book/src/proptest/getting-started.md index 9e308bbc..a3ee8280 100644 --- a/book/src/proptest/getting-started.md +++ b/book/src/proptest/getting-started.md @@ -41,7 +41,7 @@ In `Cargo.toml`, add ```toml [dev-dependencies] -proptest = "0.9.4" +proptest = "0.9.5" ``` Now we can add some property tests to our date parser. But how do we test diff --git a/proptest/CHANGELOG.md b/proptest/CHANGELOG.md index dbdc11b7..4882d336 100644 --- a/proptest/CHANGELOG.md +++ b/proptest/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.9.5 + +### Bug Fixes + +- Fixed a Rust future-compatibility issue (https://github.com/rust-lang/rust/pull/65819). + ## 0.9.4 ### Bug Fixes diff --git a/proptest/Cargo.toml b/proptest/Cargo.toml index 13b7e73c..0d99c403 100644 --- a/proptest/Cargo.toml +++ b/proptest/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "proptest" -version = "0.9.4" +version = "0.9.5" authors = ["Jason Lingle"] license = "MIT/Apache-2.0" readme = "README.md" diff --git a/proptest/README.md b/proptest/README.md index c889b5f9..6ff5ab3e 100644 --- a/proptest/README.md +++ b/proptest/README.md @@ -80,7 +80,7 @@ In `Cargo.toml`, add ```toml [dev-dependencies] -proptest = "0.9.4" +proptest = "0.9.5" ``` Now we can add some property tests to our date parser. But how do we test diff --git a/proptest/src/lib.rs b/proptest/src/lib.rs index a7938b20..9acd076c 100644 --- a/proptest/src/lib.rs +++ b/proptest/src/lib.rs @@ -14,6 +14,7 @@ //! For documentation on how to get started with proptest and general usage //! advice, please refer to the [Proptest Book](https://altsysrq.github.io/proptest-book/intro.html). +#![forbid(future_incompatible)] #![deny(missing_docs, bare_trait_objects)] #![no_std] #![cfg_attr(feature = "cargo-clippy", allow(