Skip to content

Commit c256148

Browse files
committed
[new release] containers (2 packages) (3.18)
CHANGES: - fix leb128 slice bug - fix leb128 `Int64.min_int` bug - add tests for leb128 library (c-cube/ocaml-containers#486) - some breaking changes after the big bump to 4.08 as lower bound, thanks to @fardale for the cleanup * breaking: CCListLabel.compare and CCListLabel.equal takes the function on the elements as named arguments * breaking: CCListLabel.init now takes the length as a named arguments to follow the Stdlib * breaking: change the semantic of CCFloat.{min,max} with respect to NaN to follow the Stdlib * breaking: change the semantic of CCInt.rem with respect to negative number to follow the Stdlib * breaking: change the order of argument of `CCMap.add_seq` to align with the stdlib.
1 parent e07b8a1 commit c256148

2 files changed

Lines changed: 71 additions & 0 deletions

File tree

  • packages
    • containers-data/containers-data.3.18
    • containers/containers.3.18
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
opam-version: "2.0"
2+
synopsis: "A set of advanced datatypes for containers"
3+
maintainer: ["c-cube"]
4+
authors: ["c-cube"]
5+
license: "BSD-2-Clause"
6+
tags: ["containers" "RAL" "function" "vector" "okasaki"]
7+
homepage: "https://github.com/c-cube/ocaml-containers/"
8+
bug-reports: "https://github.com/c-cube/ocaml-containers/issues"
9+
depends: [
10+
"dune" {>= "3.0"}
11+
"ocaml" {>= "4.08"}
12+
"containers" {= version}
13+
"qcheck-core" {>= "0.91" & with-test}
14+
"iter" {with-test}
15+
"gen" {with-test}
16+
"mdx" {with-test}
17+
"odoc" {with-doc}
18+
]
19+
dev-repo: "git+https://github.com/c-cube/ocaml-containers.git"
20+
build: [
21+
["dune" "build" "-p" name "-j" jobs]
22+
["dune" "build" "@doc" "-p" name ] {with-doc}
23+
["dune" "runtest" "-p" name "-j" jobs] {with-test & arch != "x86_32" & arch != "arm32"}
24+
]
25+
url {
26+
src:
27+
"https://github.com/c-cube/ocaml-containers/releases/download/v3.18/containers-3.18.tbz"
28+
checksum: [
29+
"sha256=6c51dab97ea1abc62a4aa6e15971522fc0813efdc222a2abe88794b652616a9c"
30+
"sha512=81a56b5b165b9dc7fffaa1145a9a632e7a738224e5d88285bd06eb9a972d54ab8726d17acef88acc49a391e947d6c8ea1e2c5fbcd6dba212f67e1f90cc5dab54"
31+
]
32+
}
33+
x-commit-hash: "ec898e631f57c47e4401ddabce5f83b940a7ea93"
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
opam-version: "2.0"
2+
synopsis:
3+
"A modular, clean and powerful extension of the OCaml standard library"
4+
maintainer: ["c-cube"]
5+
authors: ["c-cube"]
6+
license: "BSD-2-Clause"
7+
tags: ["stdlib" "containers" "iterators" "list" "heap" "queue"]
8+
homepage: "https://github.com/c-cube/ocaml-containers/"
9+
bug-reports: "https://github.com/c-cube/ocaml-containers/issues"
10+
depends: [
11+
"dune" {>= "3.0"}
12+
"ocaml" {>= "4.08"}
13+
"either"
14+
"dune-configurator"
15+
"qcheck-core" {>= "0.91" & with-test}
16+
"yojson" {with-test}
17+
"iter" {with-test}
18+
"gen" {with-test}
19+
"csexp" {with-test}
20+
"uutf" {with-test}
21+
"odoc" {with-doc}
22+
]
23+
depopts: ["base-unix" "base-threads"]
24+
dev-repo: "git+https://github.com/c-cube/ocaml-containers.git"
25+
build: [
26+
["dune" "build" "-p" name "-j" jobs]
27+
["dune" "build" "@doc" "-p" name ] {with-doc}
28+
["dune" "runtest" "-p" name "-j" jobs] {with-test & arch != "x86_32" & arch != "arm32"}
29+
]
30+
url {
31+
src:
32+
"https://github.com/c-cube/ocaml-containers/releases/download/v3.18/containers-3.18.tbz"
33+
checksum: [
34+
"sha256=6c51dab97ea1abc62a4aa6e15971522fc0813efdc222a2abe88794b652616a9c"
35+
"sha512=81a56b5b165b9dc7fffaa1145a9a632e7a738224e5d88285bd06eb9a972d54ab8726d17acef88acc49a391e947d6c8ea1e2c5fbcd6dba212f67e1f90cc5dab54"
36+
]
37+
}
38+
x-commit-hash: "ec898e631f57c47e4401ddabce5f83b940a7ea93"

0 commit comments

Comments
 (0)