mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-05 19:00:31 -05:00
prepare for 3.1
This commit is contained in:
parent
f3e808e870
commit
f9ee8d0e89
5 changed files with 16 additions and 4 deletions
12
CHANGELOG.md
12
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
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue