prepare for 3.1

This commit is contained in:
Simon Cruanes 2020-12-04 18:39:54 -05:00
parent f3e808e870
commit f9ee8d0e89
5 changed files with 16 additions and 4 deletions

View file

@ -1,5 +1,17 @@
# Changelog
## 3.1
- add `List.combine_chop` and corresponding `(and&)` synchronized product
- chore: remove travis to use github CI instead
- add `CCList.mguard` function for list comprehensions
- add some basic tests to CCMutHeap
- un-specify order of elements in `CCMap.to_list`
- Move definition of `CCMap.update` so that it is shadowed by Stdlib.Map.update
- fix(intmap): order of arguments for the HO param should be stable
- feat(containers-data): add `CCMutHeap` mutable heap with increase/decrease
## 3.0.1
- fix build on 32 bits architectures

View file

@ -1,5 +1,5 @@
opam-version: "2.0"
version: "3.0.1"
version: "3.1"
author: "Simon Cruanes"
maintainer: "simon.cruanes.2007@m4x.org"
synopsis: "A set of advanced datatypes for containers"

View file

@ -1,5 +1,5 @@
opam-version: "2.0"
version: "3.0.1"
version: "3.1"
author: "Simon Cruanes"
maintainer: "simon.cruanes.2007@m4x.org"
synopsis: "An extension of containers for threading"

View file

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

View file

@ -8,7 +8,7 @@
{b STATUS}: experimental, this might change in breaking ways.
@since NEXT_RELEASE *)
@since 3.1 *)
module type RANKED = CCMutHeap_intf.RANKED