diff --git a/book/src/proptest/getting-started.md b/book/src/proptest/getting-started.md index a3ee8280..872c30ba 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.5" +proptest = "0.9.6" ``` 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 4882d336..ca66c1da 100644 --- a/proptest/CHANGELOG.md +++ b/proptest/CHANGELOG.md @@ -1,3 +1,10 @@ +## 0.9.6 + +### Bug Fixes + +- Fixed [#186](https://github.com/AltSysrq/proptest/issues/186), + a Rust future-compatibility issue. + ## 0.9.5 ### Bug Fixes diff --git a/proptest/Cargo.toml b/proptest/Cargo.toml index 0d99c403..0fb09d47 100644 --- a/proptest/Cargo.toml +++ b/proptest/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "proptest" -version = "0.9.5" +version = "0.9.6" authors = ["Jason Lingle"] license = "MIT/Apache-2.0" readme = "README.md" diff --git a/proptest/README.md b/proptest/README.md index 6ff5ab3e..4160f2ee 100644 --- a/proptest/README.md +++ b/proptest/README.md @@ -80,7 +80,7 @@ In `Cargo.toml`, add ```toml [dev-dependencies] -proptest = "0.9.5" +proptest = "0.9.6" ``` Now we can add some property tests to our date parser. But how do we test diff --git a/proptest/src/arbitrary/_core/iter.rs b/proptest/src/arbitrary/_core/iter.rs index 2160f834..d9d5364f 100644 --- a/proptest/src/arbitrary/_core/iter.rs +++ b/proptest/src/arbitrary/_core/iter.rs @@ -33,9 +33,8 @@ arbitrary!(['a, T: 'a + Clone, A: Arbitrary + Iterator] args => static_map(any_with::(args), Iterator::cloned)); impl< - 'a, T: 'static + Clone, - A: fmt::Debug + 'static + Iterator, + A: fmt::Debug + 'static + Iterator, > functor::ArbitraryF1 for Cloned { type Parameters = ();