Skip to content

Commit

Permalink
Proptest version 1.0.0, -derive version 0.3.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
AltSysrq committed Feb 20, 2021
1 parent e26df9f commit 08e6113
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 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.10.1"
proptest = "1.0.0"
```

Now we can add some property tests to our date parser. But how do we test
Expand Down
2 changes: 1 addition & 1 deletion proptest-derive/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased
## 0.3.0

### Breaking changes

Expand Down
4 changes: 2 additions & 2 deletions proptest-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "proptest-derive"
version = "0.2.0"
version = "0.3.0"
authors = ["Mazdak Farrokhzad <twingoow@gmail.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
Expand All @@ -22,7 +22,7 @@ edition = "2018"
proc-macro = true

[dev-dependencies]
proptest = { version = "0.10.0", path = "../proptest" }
proptest = { version = "1.0.0", path = "../proptest" }
# We don't actually run the tests on stable since some of them use nightly
# features. However, due to
# https://github.com/laumann/compiletest-rs/issues/166, the default features of
Expand Down
2 changes: 1 addition & 1 deletion proptest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased
## 1.0.0

### Breaking Changes

Expand Down
4 changes: 2 additions & 2 deletions proptest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "proptest"
version = "0.10.1"
version = "1.0.0"
authors = ["Jason Lingle"]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/altsysrq/proptest"
homepage = "https://altsysrq.github.io/proptest-book/proptest/index.html"
documentation = "https://altsysrq.github.io/rustdoc/proptest/0.10.1/proptest/"
documentation = "https://altsysrq.github.io/rustdoc/proptest/1.0.0/proptest/"
keywords = ["property", "testing", "quickcheck", "fuzz", "hypothesis"]
categories = ["development-tools::testing"]
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion proptest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ In `Cargo.toml`, add

```toml
[dev-dependencies]
proptest = "0.10.1"
proptest = "1.0.0"
```

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

0 comments on commit 08e6113

Please sign in to comment.