Skip to content

Commit 73783b1

Browse files
committed
prepare for 0.13
1 parent 82b3b78 commit 73783b1

File tree

6 files changed

+17
-10
lines changed

6 files changed

+17
-10
lines changed

CHANGELOG.md

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

3+
## 0.13
4+
5+
- make counter private
6+
- Add debug shrinking log
7+
- fix: small fix related to stdlib/pervasives
8+
- feat: add flatten combinators in `gen`
9+
310
## 0.12
411

512
- fix singleton list shrinking

qcheck-alcotest.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author: [ "Simon Cruanes <simon.cruanes.2007@m4x.org>" ]
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.12"
7+
version: "0.13"
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 <simon.cruanes.2007@m4x.org>" ]
44
homepage: "https://github.com/c-cube/qcheck/"
55
synopsis: "Core qcheck library"
66
doc: ["http://c-cube.github.io/qcheck/"]
7-
version: "0.12"
7+
version: "0.13"
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 <simon.cruanes.2007@m4x.org>" ]
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.12"
7+
version: "0.13"
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 <simon.cruanes.2007@m4x.org>" ]
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.12"
7+
version: "0.13"
88
tags: [
99
"test"
1010
"property"

src/core/QCheck.mli

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ module Gen : sig
165165

166166
val (<$>) : ('a -> 'b) -> 'a t -> 'b t
167167
(** An infix synonym for {!map}
168-
@since NEXT_RELEASE *)
168+
@since 0.13 *)
169169

170170
val oneof : 'a t list -> 'a t
171171
(** Constructs a generator that selects among a given list of generators. *)
@@ -322,7 +322,7 @@ module Gen : sig
322322
val char_range : char -> char -> char t
323323
(** Generates chars between the two bounds, inclusive.
324324
Example: [char_range 'a' 'z'] for all lower case ascii letters.
325-
@since NEXT_RELEASE *)
325+
@since 0.13 *)
326326

327327
val string_size : ?gen:char t -> int t -> string t
328328
(** Builds a string generator from a (non-negative) size generator.
@@ -352,19 +352,19 @@ module Gen : sig
352352

353353
val flatten_l : 'a t list -> 'a list t
354354
(** Generate a list of elements from individual generators
355-
@since NEXT_RELEASE *)
355+
@since 0.13 *)
356356

357357
val flatten_a : 'a t array -> 'a array t
358358
(** Generate an array of elements from individual generators
359-
@since NEXT_RELEASE *)
359+
@since 0.13 *)
360360

361361
val flatten_opt : 'a t option -> 'a option t
362362
(** Generate an option from an optional generator
363-
@since NEXT_RELEASE *)
363+
@since 0.13 *)
364364

365365
val flatten_res : ('a t, 'e) result -> ('a,'e) result t
366366
(** Generate a result from [Ok g], an error from [Error e]
367-
@since NEXT_RELEASE *)
367+
@since 0.13 *)
368368

369369
val small_array : 'a t -> 'a array t
370370
(** Generates arrays of small size (see {!small_nat}).

0 commit comments

Comments
 (0)