Skip to content

Commit 6aaef39

Browse files
committed
prepare for 0.17
1 parent 8ddf982 commit 6aaef39

File tree

6 files changed

+14
-5
lines changed

6 files changed

+14
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changes
22

3+
## 0.17
4+
5+
- new function: `Gen.delay`
6+
7+
- install printer for an internal exception
8+
- fix(runner): use random state independently for each test
9+
- Fixes distribution and `min_int` issues
10+
- doc: point to @jmid 's website
11+
312
## 0.16
413

514
- fix(runner): detect more failures in the runner

qcheck-alcotest.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author: [ "Simon Cruanes <[email protected]>" ]
44
homepage: "https://github.com/c-cube/qcheck/"
55
synopsis: "Alcotest backend for qcheck"
66
doc: ["http://c-cube.github.io/qcheck/"]
7-
version: "0.16"
7+
version: "0.17"
88
tags: [
99
"test"
1010
"quickcheck"

qcheck-core.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author: [ "Simon Cruanes <[email protected]>" ]
44
homepage: "https://github.com/c-cube/qcheck/"
55
synopsis: "Core qcheck library"
66
doc: ["http://c-cube.github.io/qcheck/"]
7-
version: "0.16"
7+
version: "0.17"
88
tags: [
99
"test"
1010
"property"

qcheck-ounit.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author: [ "Simon Cruanes <[email protected]>" ]
44
homepage: "https://github.com/c-cube/qcheck/"
55
doc: ["http://c-cube.github.io/qcheck/"]
66
synopsis: "OUnit backend for qcheck"
7-
version: "0.16"
7+
version: "0.17"
88
tags: [
99
"qcheck"
1010
"quickcheck"

qcheck.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author: [ "Simon Cruanes <[email protected]>" ]
44
synopsis: "Compatibility package for qcheck"
55
homepage: "https://github.com/c-cube/qcheck/"
66
doc: ["http://c-cube.github.io/qcheck/"]
7-
version: "0.16"
7+
version: "0.17"
88
tags: [
99
"test"
1010
"property"

src/core/QCheck.mli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ module Gen : sig
426426
(** Delay execution of some code until the generator is actually called.
427427
This can be used to manually implement recursion or control flow
428428
in a generator.
429-
@since NEXT_RELEASE *)
429+
@since 0.17 *)
430430

431431
val generate : ?rand:Random.State.t -> n:int -> 'a t -> 'a list
432432
(** [generate ~n g] generates [n] instances of [g]. *)

0 commit comments

Comments
 (0)