Skip to content

Commit 265ed02

Browse files
committed
Merge branch 'master' into stable for 0.22.1
2 parents 9c80dba + 0046bea commit 265ed02

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

_oasis

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
OASISFormat: 0.4
22
Name: containers
3-
Version: 0.22
3+
Version: 0.22.1
44
Homepage: https://github.com/c-cube/ocaml-containers
55
Authors: Simon Cruanes
66
License: BSD-2-clause

opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
opam-version: "1.2"
22
name: "containers"
3-
version: "0.21"
3+
version: "0.22.1"
44
author: "Simon Cruanes"
55
maintainer: "[email protected]"
66
build: [

src/advanced/CCLinq.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ module PMap = struct
212212
seq
213213

214214
let flatten_l m =
215-
let seq = Sequence.flatMap
215+
let seq = Sequence.flat_map
216216
(fun (k,v) -> Sequence.map (fun v' -> k,v') (Sequence.of_list v))
217217
m.to_seq
218218
in

src/core/META

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# OASIS_START
2-
# DO NOT EDIT (digest: a16455ed7ae2b2e8c42add2f54bd446e)
3-
version = "0.22"
2+
# DO NOT EDIT (digest: e46e29f7bdcb542070b9b01d13e70831)
3+
version = "0.22.1"
44
description = "A modular standard library focused on data structures."
55
requires = "bytes result"
66
archive(byte) = "containers.cma"
@@ -9,7 +9,7 @@ archive(native) = "containers.cmxa"
99
archive(native, plugin) = "containers.cmxs"
1010
exists_if = "containers.cma"
1111
package "unix" (
12-
version = "0.22"
12+
version = "0.22.1"
1313
description = "A modular standard library focused on data structures."
1414
requires = "bytes unix"
1515
archive(byte) = "containers_unix.cma"
@@ -20,7 +20,7 @@ package "unix" (
2020
)
2121

2222
package "top" (
23-
version = "0.22"
23+
version = "0.22.1"
2424
description = "A modular standard library focused on data structures."
2525
requires =
2626
"compiler-libs.common containers containers.data containers.bigarray containers.string containers.unix containers.sexp containers.iter"
@@ -32,7 +32,7 @@ package "top" (
3232
)
3333

3434
package "thread" (
35-
version = "0.22"
35+
version = "0.22.1"
3636
description = "A modular standard library focused on data structures."
3737
requires = "containers threads"
3838
archive(byte) = "containers_thread.cma"
@@ -43,7 +43,7 @@ package "thread" (
4343
)
4444

4545
package "string" (
46-
version = "0.22"
46+
version = "0.22.1"
4747
description = "A modular standard library focused on data structures."
4848
requires = "bytes"
4949
archive(byte) = "containers_string.cma"
@@ -54,7 +54,7 @@ package "string" (
5454
)
5555

5656
package "sexp" (
57-
version = "0.22"
57+
version = "0.22.1"
5858
description = "A modular standard library focused on data structures."
5959
requires = "bytes"
6060
archive(byte) = "containers_sexp.cma"
@@ -65,7 +65,7 @@ package "sexp" (
6565
)
6666

6767
package "iter" (
68-
version = "0.22"
68+
version = "0.22.1"
6969
description = "A modular standard library focused on data structures."
7070
archive(byte) = "containers_iter.cma"
7171
archive(byte, plugin) = "containers_iter.cma"
@@ -75,7 +75,7 @@ package "iter" (
7575
)
7676

7777
package "io" (
78-
version = "0.22"
78+
version = "0.22.1"
7979
description = "A modular standard library focused on data structures."
8080
requires = "bytes"
8181
archive(byte) = "containers_io.cma"
@@ -86,7 +86,7 @@ package "io" (
8686
)
8787

8888
package "data" (
89-
version = "0.22"
89+
version = "0.22.1"
9090
description = "A modular standard library focused on data structures."
9191
requires = "bytes"
9292
archive(byte) = "containers_data.cma"
@@ -97,7 +97,7 @@ package "data" (
9797
)
9898

9999
package "bigarray" (
100-
version = "0.22"
100+
version = "0.22.1"
101101
description = "A modular standard library focused on data structures."
102102
requires = "containers bigarray bytes"
103103
archive(byte) = "containers_bigarray.cma"
@@ -108,7 +108,7 @@ package "bigarray" (
108108
)
109109

110110
package "advanced" (
111-
version = "0.22"
111+
version = "0.22.1"
112112
description = "A modular standard library focused on data structures."
113113
requires = "containers sequence"
114114
archive(byte) = "containers_advanced.cma"

0 commit comments

Comments
 (0)