mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 03:05:28 -05:00
prepare for 2.5
This commit is contained in:
parent
83251c9efa
commit
c10ad46fbd
3 changed files with 8 additions and 2 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue