Skip to content

Commit

Permalink
Merge branch 'master' into stable for 0.22.1
Browse files Browse the repository at this point in the history
  • Loading branch information
c-cube committed Dec 29, 2016
2 parents 9c80dba + 0046bea commit 265ed02
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion _oasis
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
OASISFormat: 0.4
Name: containers
Version: 0.22
Version: 0.22.1
Homepage: https://github.com/c-cube/ocaml-containers
Authors: Simon Cruanes
License: BSD-2-clause
Expand Down
2 changes: 1 addition & 1 deletion opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "1.2"
name: "containers"
version: "0.21"
version: "0.22.1"
author: "Simon Cruanes"
maintainer: "simon.cruanes@inria.fr"
build: [
Expand Down
2 changes: 1 addition & 1 deletion src/advanced/CCLinq.ml
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ module PMap = struct
seq

let flatten_l m =
let seq = Sequence.flatMap
let seq = Sequence.flat_map
(fun (k,v) -> Sequence.map (fun v' -> k,v') (Sequence.of_list v))
m.to_seq
in
Expand Down
24 changes: 12 additions & 12 deletions src/core/META
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# OASIS_START
# DO NOT EDIT (digest: a16455ed7ae2b2e8c42add2f54bd446e)
version = "0.22"
# DO NOT EDIT (digest: e46e29f7bdcb542070b9b01d13e70831)
version = "0.22.1"
description = "A modular standard library focused on data structures."
requires = "bytes result"
archive(byte) = "containers.cma"
Expand All @@ -9,7 +9,7 @@ archive(native) = "containers.cmxa"
archive(native, plugin) = "containers.cmxs"
exists_if = "containers.cma"
package "unix" (
version = "0.22"
version = "0.22.1"
description = "A modular standard library focused on data structures."
requires = "bytes unix"
archive(byte) = "containers_unix.cma"
Expand All @@ -20,7 +20,7 @@ package "unix" (
)

package "top" (
version = "0.22"
version = "0.22.1"
description = "A modular standard library focused on data structures."
requires =
"compiler-libs.common containers containers.data containers.bigarray containers.string containers.unix containers.sexp containers.iter"
Expand All @@ -32,7 +32,7 @@ package "top" (
)

package "thread" (
version = "0.22"
version = "0.22.1"
description = "A modular standard library focused on data structures."
requires = "containers threads"
archive(byte) = "containers_thread.cma"
Expand All @@ -43,7 +43,7 @@ package "thread" (
)

package "string" (
version = "0.22"
version = "0.22.1"
description = "A modular standard library focused on data structures."
requires = "bytes"
archive(byte) = "containers_string.cma"
Expand All @@ -54,7 +54,7 @@ package "string" (
)

package "sexp" (
version = "0.22"
version = "0.22.1"
description = "A modular standard library focused on data structures."
requires = "bytes"
archive(byte) = "containers_sexp.cma"
Expand All @@ -65,7 +65,7 @@ package "sexp" (
)

package "iter" (
version = "0.22"
version = "0.22.1"
description = "A modular standard library focused on data structures."
archive(byte) = "containers_iter.cma"
archive(byte, plugin) = "containers_iter.cma"
Expand All @@ -75,7 +75,7 @@ package "iter" (
)

package "io" (
version = "0.22"
version = "0.22.1"
description = "A modular standard library focused on data structures."
requires = "bytes"
archive(byte) = "containers_io.cma"
Expand All @@ -86,7 +86,7 @@ package "io" (
)

package "data" (
version = "0.22"
version = "0.22.1"
description = "A modular standard library focused on data structures."
requires = "bytes"
archive(byte) = "containers_data.cma"
Expand All @@ -97,7 +97,7 @@ package "data" (
)

package "bigarray" (
version = "0.22"
version = "0.22.1"
description = "A modular standard library focused on data structures."
requires = "containers bigarray bytes"
archive(byte) = "containers_bigarray.cma"
Expand All @@ -108,7 +108,7 @@ package "bigarray" (
)

package "advanced" (
version = "0.22"
version = "0.22.1"
description = "A modular standard library focused on data structures."
requires = "containers sequence"
archive(byte) = "containers_advanced.cma"
Expand Down

0 comments on commit 265ed02

Please sign in to comment.