prepare for 2.5

This commit is contained in:
Simon Cruanes 2019-02-02 14:03:22 -06:00
parent 83251c9efa
commit c10ad46fbd
3 changed files with 8 additions and 2 deletions

View file

@ -1,5 +1,11 @@
= Changelog = Changelog
== 2.5
- perf: annotate types in monomorphic/float/int to help specialize builtins
- use GADT to discard impossible case on `CCFQueue` (@dinosaure).
- fix(funvec): expose `pop`, fix off by one error
== 2.4.1 == 2.4.1
- revert some compatibility-breaking changes in label modules - revert some compatibility-breaking changes in label modules

View file

@ -1,6 +1,6 @@
opam-version: "2.0" opam-version: "2.0"
name: "containers" name: "containers"
version: "2.4.1" version: "2.5"
author: "Simon Cruanes" author: "Simon Cruanes"
maintainer: "simon.cruanes.2007@m4x.org" maintainer: "simon.cruanes.2007@m4x.org"
synopsis: "A modular, clean and powerful extension of the OCaml standard library" synopsis: "A modular, clean and powerful extension of the OCaml standard library"

View file

@ -74,7 +74,7 @@ val pop_exn : 'a t -> 'a * 'a t
val pop : 'a t -> ('a * 'a t) option val pop : 'a t -> ('a * 'a t) option
(** Pop last element. (** Pop last element.
@since NEXT_RELEASE *) @since 2.5 *)
val iter : f:('a -> unit) -> 'a t -> unit val iter : f:('a -> unit) -> 'a t -> unit