prepare for 2.8.1

This commit is contained in:
Simon Cruanes 2020-01-12 18:18:27 -06:00
parent 2e3393f81e
commit 527c4414d9
3 changed files with 6 additions and 2 deletions

View file

@ -1,5 +1,9 @@
# Changelog # Changelog
## 2.8.1
- add missing `CCVector.of_iter`
## 2.8 ## 2.8
### Breaking: ### Breaking:

View file

@ -1,6 +1,6 @@
opam-version: "2.0" opam-version: "2.0"
name: "containers" name: "containers"
version: "2.8" version: "2.8.1"
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

@ -303,7 +303,7 @@ val to_list : ('a,_) t -> 'a list
val of_iter : ?init:('a,rw) t -> 'a iter -> ('a, rw) t val of_iter : ?init:('a,rw) t -> 'a iter -> ('a, rw) t
(** Convert an Iterator to a vector. (** Convert an Iterator to a vector.
@since NEXT_RELEASE *) @since 2.8.1 *)
val of_seq : ?init:('a,rw) t -> 'a sequence -> ('a, rw) t val of_seq : ?init:('a,rw) t -> 'a sequence -> ('a, rw) t
(** Convert an Iterator to a vector. (** Convert an Iterator to a vector.