Skip to content

Commit ac9e736

Browse files
committed
Update proptest to 1.6.0.
1 parent 2d5f10e commit ac9e736

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ proc-macro2 = "1.0.86"
2424
structmeta = "0.3.0"
2525

2626
[dev-dependencies]
27-
proptest = "1.5.0"
27+
proptest = "1.6.0"
2828
trybuild = "1.0.96"
2929
tokio = { version = "1.38.0", features = ["rt-multi-thread"] }

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Add this to your Cargo.toml:
3333
```toml
3434
[dependencies]
3535
test-strategy = "0.4.0"
36-
proptest = "1.5.0"
36+
proptest = "1.6.0"
3737
```
3838

3939
## Example
@@ -645,7 +645,7 @@ The value specifies the asynchronous runtime used for the test.
645645
```toml
646646
[dev-dependencies]
647647
test-strategy = "0.4.0"
648-
proptest = "1.5.0"
648+
proptest = "1.6.0"
649649
tokio = { version = "1.38.0", features = ["rt-multi-thread"] }
650650
```
651651

src/lib.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
//! ```toml
2929
//! [dependencies]
3030
//! test-strategy = "0.4.0"
31-
//! proptest = "1.5.0"
31+
//! proptest = "1.6.0"
3232
//! ```
3333
//!
3434
//! ## Example
@@ -603,7 +603,6 @@
603603
//! use proptest::prelude::ProptestConfig;
604604
//! use test_strategy::proptest;
605605
//!
606-
//!
607606
//! #[proptest(ProptestConfig { cases : 1000, ..ProptestConfig::default() })]
608607
//! fn my_test_with_config(_input: i32) {
609608
//! // ...
@@ -641,7 +640,7 @@
641640
//! ```toml
642641
//! [dev-dependencies]
643642
//! test-strategy = "0.4.0"
644-
//! proptest = "1.5.0"
643+
//! proptest = "1.6.0"
645644
//! tokio = { version = "1.38.0", features = ["rt-multi-thread"] }
646645
//! ```
647646
//!

0 commit comments

Comments
 (0)