Skip to content

Commit

Permalink
release proptest 0.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Centril committed Jan 17, 2020
1 parent 5341d3e commit 0d16bfa
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion book/src/proptest/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions proptest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion proptest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion proptest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions proptest/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 0d16bfa

Please sign in to comment.