Skip to content

Commit f9ee8d0

Browse files
committed
prepare for 3.1
1 parent f3e808e commit f9ee8d0

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-4
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## 3.1
4+
5+
- add `List.combine_chop` and corresponding `(and&)` synchronized product
6+
- chore: remove travis to use github CI instead
7+
- add `CCList.mguard` function for list comprehensions
8+
- add some basic tests to CCMutHeap
9+
- un-specify order of elements in `CCMap.to_list`
10+
- Move definition of `CCMap.update` so that it is shadowed by Stdlib.Map.update
11+
- fix(intmap): order of arguments for the HO param should be stable
12+
13+
- feat(containers-data): add `CCMutHeap` mutable heap with increase/decrease
14+
315
## 3.0.1
416

517
- fix build on 32 bits architectures

containers-data.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
opam-version: "2.0"
2-
version: "3.0.1"
2+
version: "3.1"
33
author: "Simon Cruanes"
44
maintainer: "[email protected]"
55
synopsis: "A set of advanced datatypes for containers"

containers-thread.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
opam-version: "2.0"
2-
version: "3.0.1"
2+
version: "3.1"
33
author: "Simon Cruanes"
44
maintainer: "[email protected]"
55
synopsis: "An extension of containers for threading"

containers.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
opam-version: "2.0"
22
name: "containers"
3-
version: "3.0.1"
3+
version: "3.1"
44
author: "Simon Cruanes"
55
maintainer: "[email protected]"
66
synopsis: "A modular, clean and powerful extension of the OCaml standard library"

src/data/CCMutHeap.mli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
{b STATUS}: experimental, this might change in breaking ways.
1010
11-
@since NEXT_RELEASE *)
11+
@since 3.1 *)
1212

1313
module type RANKED = CCMutHeap_intf.RANKED
1414

0 commit comments

Comments
 (0)