Skip to content

Commit

Permalink
release 0.9.6, fixing future compat issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Centril committed Apr 11, 2020
1 parent 4956327 commit eaa3c55
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion book/src/proptest/getting-started.md
Expand Up @@ -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
Expand Down
7 changes: 7 additions & 0 deletions proptest/CHANGELOG.md
Expand Up @@ -4,6 +4,13 @@

- The version of the `rand` crate has been increased to 0.7.

## 0.9.6

### Bug Fixes

- Fixed [#186](https://github.com/AltSysrq/proptest/issues/186),
a Rust future-compatibility issue.

## 0.9.5

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion 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"
Expand Down
2 changes: 1 addition & 1 deletion proptest/README.md
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions proptest/src/arbitrary/_core/iter.rs
Expand Up @@ -33,9 +33,8 @@ arbitrary!(['a, T: 'a + Clone, A: Arbitrary + Iterator<Item = &'a T>]
args => static_map(any_with::<A>(args), Iterator::cloned));

impl<
'a,
T: 'static + Clone,
A: fmt::Debug + 'static + Iterator<Item = &'a T>,
A: fmt::Debug + 'static + Iterator<Item = &'static T>,
> functor::ArbitraryF1<A> for Cloned<A>
{
type Parameters = ();
Expand Down

0 comments on commit eaa3c55

Please sign in to comment.