Skip to content

Commit a724095

Browse files
committed
Version 0.9.1.
1 parent 3b648b6 commit a724095

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

book/src/proptest/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ In `Cargo.toml`, add
4141

4242
```toml
4343
[dev-dependencies]
44-
proptest = "0.9.0"
44+
proptest = "0.9.1"
4545
```
4646

4747
Now we can add some property tests to our date parser. But how do we test

proptest-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ service = "github"
3131
proc-macro = true
3232

3333
[dev-dependencies]
34-
proptest = { version = "0.9.0", path = "../proptest" }
34+
proptest = { version = "0.9.1", path = "../proptest" }
3535
compiletest_rs = { version = "0.3.3", features = ["tmp"] }
3636

3737
[dependencies]

proptest/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Unreleased
1+
## 0.9.1
22

33
### New RNG Algorithm
44

proptest/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "proptest"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
authors = ["Jason Lingle"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"
77
repository = "https://github.com/altsysrq/proptest"
88
homepage = "https://altsysrq.github.io/proptest-book/proptest/index.html"
9-
documentation = "https://altsysrq.github.io/rustdoc/proptest/0.9.0/proptest/"
9+
documentation = "https://altsysrq.github.io/rustdoc/proptest/0.9.1/proptest/"
1010
keywords = ["property", "testing", "quickcheck", "fuzz", "hypothesis"]
1111
categories = ["development-tools::testing"]
1212
edition = "2018"

proptest/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ In `Cargo.toml`, add
8686

8787
```toml
8888
[dev-dependencies]
89-
proptest = "0.9.0"
89+
proptest = "0.9.1"
9090
```
9191

9292
Now we can add some property tests to our date parser. But how do we test

0 commit comments

Comments
 (0)