Skip to content

Commit

Permalink
Prepare for 0.23 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jmid committed Dec 12, 2024
1 parent 52889c3 commit b330336
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion ppx_deriving_qcheck.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "ppx_deriving_qcheck"
version: "0.4.1"
version: "0.5"
license: "BSD-2-Clause"
synopsis: "PPX Deriver for QCheck"

Expand Down
2 changes: 1 addition & 1 deletion qcheck-alcotest.opam
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ homepage: "https://github.com/c-cube/qcheck/"
license: "BSD-2-Clause"
synopsis: "Alcotest backend for qcheck"
doc: ["http://c-cube.github.io/qcheck/"]
version: "0.22"
version: "0.23"
tags: [
"test"
"quickcheck"
Expand Down
2 changes: 1 addition & 1 deletion qcheck-core.opam
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ homepage: "https://github.com/c-cube/qcheck/"
license: "BSD-2-Clause"
synopsis: "Core qcheck library"
doc: ["http://c-cube.github.io/qcheck/"]
version: "0.22"
version: "0.23"
tags: [
"test"
"property"
Expand Down
2 changes: 1 addition & 1 deletion qcheck-ounit.opam
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license: "BSD-2-Clause"
homepage: "https://github.com/c-cube/qcheck/"
doc: ["http://c-cube.github.io/qcheck/"]
synopsis: "OUnit backend for qcheck"
version: "0.22"
version: "0.23"
tags: [
"qcheck"
"quickcheck"
Expand Down
2 changes: 1 addition & 1 deletion qcheck.opam
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ synopsis: "Compatibility package for qcheck"
homepage: "https://github.com/c-cube/qcheck/"
license: "BSD-2-Clause"
doc: ["http://c-cube.github.io/qcheck/"]
version: "0.22"
version: "0.23"
tags: [
"test"
"property"
Expand Down
6 changes: 3 additions & 3 deletions src/core/QCheck.mli
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ module Gen : sig
(** [exponential m] generates floating-point numbers following an exponential
distribution with a mean of [m].
@raise Invalid_argument if [m] is NaN.
@since NEXT_VERSION *)
@since 0.23 *)

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

Expand Down Expand Up @@ -772,7 +772,7 @@ module Shrink : sig
(** @since 0.6 *)

val bool : bool t
(** @since NEXT_RELEASE *)
(** @since 0.23 *)

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

val int : int arbitrary
(** Int generator. Uniformly distributed. *)
Expand Down
2 changes: 1 addition & 1 deletion src/core/QCheck2.mli
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ module Gen : sig
@raise Invalid_argument if [m] is NaN.
@since NEXT_VERSION *)
@since 0.23 *)

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

0 comments on commit b330336

Please sign in to comment.