diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e311bb..09b514c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.5.2 + +- bugfix in `take` +- `on_list` for mapping lists through sequences + ## 0.5.1 - `Sequence.IO` module, a very very simple way to read/write files diff --git a/META b/META index 5fc1bff..ffd12c9 100644 --- a/META +++ b/META @@ -1,6 +1,6 @@ # OASIS_START -# DO NOT EDIT (digest: 3b9ebef180f5e4bdb720d2103ba95667) -version = "0.5.1" +# DO NOT EDIT (digest: f4f3ee8dc8cda763af26a927b88956e6) +version = "0.5.2" description = "Simple sequence (iterator) datatype and combinators" archive(byte) = "sequence.cma" archive(byte, plugin) = "sequence.cma" @@ -8,7 +8,7 @@ archive(native) = "sequence.cmxa" archive(native, plugin) = "sequence.cmxs" exists_if = "sequence.cma" package "invert" ( - version = "0.5.1" + version = "0.5.2" description = "Simple sequence (iterator) datatype and combinators" requires = "sequence delimcc" archive(byte) = "invert.cma" diff --git a/_oasis b/_oasis index d1452f2..7c5a8e4 100644 --- a/_oasis +++ b/_oasis @@ -1,6 +1,6 @@ OASISFormat: 0.4 Name: sequence -Version: 0.5.1 +Version: 0.5.2 Homepage: https://github.com/c-cube/sequence Authors: Simon Cruanes License: BSD-2-clause diff --git a/sequence.mli b/sequence.mli index 03ed96e..449b3f7 100644 --- a/sequence.mli +++ b/sequence.mli @@ -321,7 +321,7 @@ val of_list : 'a list -> 'a t val on_list : ('a t -> 'b t) -> 'a list -> 'b list (** [on_list f l] is equivalent to [to_list @@ f @@ of_list l]. - @since NEXT_RELEASE + @since 0.5.2 *) val to_opt : 'a t -> 'a option diff --git a/setup.ml b/setup.ml index e293257..72507e2 100644 --- a/setup.ml +++ b/setup.ml @@ -1,7 +1,7 @@ (* setup.ml generated for the first time by OASIS v0.4.4 *) (* OASIS_START *) -(* DO NOT EDIT (digest: d7a207daf3186cce7792651a50aaba59) *) +(* DO NOT EDIT (digest: 3e1599f233d66e02cd17bbb3a1c71d9e) *) (* Regenerated by OASIS v0.4.4 Visit http://oasis.forge.ocamlcore.org for more information and @@ -6826,7 +6826,7 @@ let setup_t = alpha_features = []; beta_features = []; name = "sequence"; - version = "0.5.1"; + version = "0.5.2"; license = OASISLicense.DEP5License (OASISLicense.DEP5Unit @@ -7192,7 +7192,8 @@ let setup_t = }; oasis_fn = Some "_oasis"; oasis_version = "0.4.4"; - oasis_digest = Some "8\252\157\1340^<0\133GR\029nmc6"; + oasis_digest = + Some "\142\243\242-\024\139\245\030\1867\186\147D\175\251\192"; oasis_exec = None; oasis_setup_args = []; setup_update = false @@ -7200,6 +7201,6 @@ let setup_t = let setup () = BaseSetup.setup setup_t;; -# 7204 "setup.ml" +# 7205 "setup.ml" (* OASIS_STOP *) let () = setup ();;