Skip to content

Commit

Permalink
prepare for 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
c-cube committed Jan 8, 2017
1 parent 4b4bb09 commit ec1bdb3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion _oasis
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
OASISFormat: 0.4
Name: qcheck
Version: 0.5
Version: 0.5.1
Homepage: https://github.com/c-cube/qcheck
Authors: Simon Cruanes, Vincent Hugot
License: LGPL
Expand Down
6 changes: 3 additions & 3 deletions setup.ml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(* setup.ml generated for the first time by OASIS v0.3.0 *)

(* OASIS_START *)
(* DO NOT EDIT (digest: 90bd3cf8a873be34d56786e64c1d6358) *)
(* DO NOT EDIT (digest: f9d3607a34eea5026cff171c86485859) *)
(*
Regenerated by OASIS v0.4.8
Visit http://oasis.forge.ocamlcore.org for more information and
Expand Down Expand Up @@ -6875,7 +6875,7 @@ let setup_t =
{
oasis_version = "0.4";
ocaml_version = None;
version = "0.5";
version = "0.5.1";
license =
OASISLicense.DEP5License
(OASISLicense.DEP5Unit
Expand Down Expand Up @@ -7281,7 +7281,7 @@ let setup_t =
};
oasis_fn = Some "_oasis";
oasis_version = "0.4.8";
oasis_digest = Some "E\245RA\021\031K\015#\201\170\223\161J\172m";
oasis_digest = Some "\156=\143n\019\022x\253\247\183$\201MU\247\180";
oasis_exec = None;
oasis_setup_args = [];
setup_update = false
Expand Down
4 changes: 2 additions & 2 deletions src/META
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# OASIS_START
# DO NOT EDIT (digest: 39834eb1a5d70d8e480a69594bb35834)
version = "0.5"
# DO NOT EDIT (digest: 575ebc1f480a40fa92360dec7fcf5888)
version = "0.5.1"
description = "QuickCheck inspired property based testing"
requires = "unix bytes oUnit"
archive(byte) = "qcheck.cma"
Expand Down
10 changes: 5 additions & 5 deletions src/QCheck.mli
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ val assume : bool -> unit
List.hd l :: List.tl l = l)
]}
@since NEXT_RELEASE
@since 0.5.1
*)

val assume_fail : unit -> 'a
Expand All @@ -132,7 +132,7 @@ val assume_fail : unit -> 'a
| _::_ as l -> List.hd l :: List.tl l = l)
]}
@since NEXT_RELEASE
@since 0.5.1
*)

(** {2 Generate Random Values} *)
Expand Down Expand Up @@ -198,7 +198,7 @@ module Gen : sig
val neg_int : int t (** Generates negative integers *)
val pint : int t (** Generates positive integers uniformly *)
val int : int t (** Generates integers uniformly *)
val small_nat : int t (** Synonym to {!nat} @since NEXT_RELEASE *)
val small_nat : int t (** Synonym to {!nat} @since 0.5.1 *)
val small_int : int t (** Small signed integers (not just {!nat}) *)
val int_bound : int -> int t
(** Uniform integer generator producing integers within [0... bound].
Expand Down Expand Up @@ -228,7 +228,7 @@ module Gen : sig
val opt : 'a t -> 'a option t (** An option generator *)
val pair : 'a t -> 'b t -> ('a * 'b) t (** Generates pairs *)
val triple : 'a t -> 'b t -> 'c t -> ('a * 'b * 'c) t (** Generates triples *)
val quad : 'a t -> 'b t -> 'c t -> 'd t -> ('a * 'b * 'c * 'd) t (** Generates quadruples @since NEXT_RELEASE *)
val quad : 'a t -> 'b t -> 'c t -> 'd t -> ('a * 'b * 'c * 'd) t (** Generates quadruples @since 0.5.1 *)

val char : char t (** Generates characters upto character code 255 *)
val printable : char t (** Generates printable characters *)
Expand Down Expand Up @@ -570,7 +570,7 @@ val int_range : int -> int -> int arbitrary

val small_nat : int arbitrary
(** Small unsigned integers
@since NEXT_RELEASE *)
@since 0.5.1 *)

val small_int : int arbitrary
(** Small signed integers. See {!Gen.small_int}. *)
Expand Down

0 comments on commit ec1bdb3

Please sign in to comment.