Skip to content

Commit

Permalink
prepare for 2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
c-cube committed Feb 2, 2019
1 parent 83251c9 commit c10ad46
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
= 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

- revert some compatibility-breaking changes in label modules
Expand Down
2 changes: 1 addition & 1 deletion containers.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "containers"
version: "2.4.1"
version: "2.5"
author: "Simon Cruanes"
maintainer: "[email protected]"
synopsis: "A modular, clean and powerful extension of the OCaml standard library"
Expand Down
2 changes: 1 addition & 1 deletion src/data/CCFun_vec.mli
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ val pop_exn : 'a t -> 'a * 'a t

val pop : 'a t -> ('a * 'a t) option
(** Pop last element.
@since NEXT_RELEASE *)
@since 2.5 *)

val iter : f:('a -> unit) -> 'a t -> unit

Expand Down

0 comments on commit c10ad46

Please sign in to comment.