From f9ee8d0e89b900540d30a3c882ad04f0f0606248 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Fri, 4 Dec 2020 18:39:54 -0500 Subject: [PATCH] prepare for 3.1 --- CHANGELOG.md | 12 ++++++++++++ containers-data.opam | 2 +- containers-thread.opam | 2 +- containers.opam | 2 +- src/data/CCMutHeap.mli | 2 +- 5 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c1699888a..2b30927fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/containers-data.opam b/containers-data.opam index b2851d957..519c472b3 100644 --- a/containers-data.opam +++ b/containers-data.opam @@ -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" diff --git a/containers-thread.opam b/containers-thread.opam index 03b86cf9c..c44e1eb54 100644 --- a/containers-thread.opam +++ b/containers-thread.opam @@ -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" diff --git a/containers.opam b/containers.opam index 9a90c333a..6ad34ac59 100644 --- a/containers.opam +++ b/containers.opam @@ -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" diff --git a/src/data/CCMutHeap.mli b/src/data/CCMutHeap.mli index 8bcf70eaa..79abe3a48 100644 --- a/src/data/CCMutHeap.mli +++ b/src/data/CCMutHeap.mli @@ -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