Skip to content

Commit b330336

Browse files
committed
Prepare for 0.23 release
1 parent 52889c3 commit b330336

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

ppx_deriving_qcheck.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
opam-version: "2.0"
22
name: "ppx_deriving_qcheck"
3-
version: "0.4.1"
3+
version: "0.5"
44
license: "BSD-2-Clause"
55
synopsis: "PPX Deriver for QCheck"
66

qcheck-alcotest.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ homepage: "https://github.com/c-cube/qcheck/"
55
license: "BSD-2-Clause"
66
synopsis: "Alcotest backend for qcheck"
77
doc: ["http://c-cube.github.io/qcheck/"]
8-
version: "0.22"
8+
version: "0.23"
99
tags: [
1010
"test"
1111
"quickcheck"

qcheck-core.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ homepage: "https://github.com/c-cube/qcheck/"
55
license: "BSD-2-Clause"
66
synopsis: "Core qcheck library"
77
doc: ["http://c-cube.github.io/qcheck/"]
8-
version: "0.22"
8+
version: "0.23"
99
tags: [
1010
"test"
1111
"property"

qcheck-ounit.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ license: "BSD-2-Clause"
55
homepage: "https://github.com/c-cube/qcheck/"
66
doc: ["http://c-cube.github.io/qcheck/"]
77
synopsis: "OUnit backend for qcheck"
8-
version: "0.22"
8+
version: "0.23"
99
tags: [
1010
"qcheck"
1111
"quickcheck"

qcheck.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ synopsis: "Compatibility package for qcheck"
55
homepage: "https://github.com/c-cube/qcheck/"
66
license: "BSD-2-Clause"
77
doc: ["http://c-cube.github.io/qcheck/"]
8-
version: "0.22"
8+
version: "0.23"
99
tags: [
1010
"test"
1111
"property"

src/core/QCheck.mli

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ module Gen : sig
285285
(** [exponential m] generates floating-point numbers following an exponential
286286
distribution with a mean of [m].
287287
@raise Invalid_argument if [m] is NaN.
288-
@since NEXT_VERSION *)
288+
@since 0.23 *)
289289

290290
val nat : int t (** Generates small natural numbers. *)
291291

@@ -772,7 +772,7 @@ module Shrink : sig
772772
(** @since 0.6 *)
773773

774774
val bool : bool t
775-
(** @since NEXT_RELEASE *)
775+
(** @since 0.23 *)
776776

777777
val char : char t
778778
(** Shrinks towards ['a'].
@@ -993,7 +993,7 @@ val exponential : float -> float arbitrary
993993
(** [exponential m] generates floating-point numbers following an exponential
994994
distribution with a mean of [m].
995995
@raise Invalid_argument if [m] is NaN.
996-
@since NEXT_VERSION *)
996+
@since 0.23 *)
997997

998998
val int : int arbitrary
999999
(** Int generator. Uniformly distributed. *)

src/core/QCheck2.mli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ module Gen : sig
537537
538538
@raise Invalid_argument if [m] is NaN.
539539
540-
@since NEXT_VERSION *)
540+
@since 0.23 *)
541541

542542
val char_range : ?origin:char -> char -> char -> char t
543543
(** [char_range ?origin low high] generates chars between [low] and [high], inclusive.

0 commit comments

Comments
 (0)