Skip to content

Commit ba508d6

Browse files
authored
Merge pull request ocaml#21957 from mattjbray/release-decoders-v1.0.0
[new release] decoders, decoders-yojson, decoders-sexplib, decoders-msgpck, decoders-jsonm, decoders-jsonaf, decoders-ezxmlm, decoders-ezjsonm, decoders-cbor and decoders-bencode (1.0.0)
2 parents 4948637 + 255f827 commit ba508d6

File tree

35 files changed

+456
-25
lines changed
  • packages
    • decoders-bencode
      • decoders-bencode.0.3.0
      • decoders-bencode.0.4.0
      • decoders-bencode.0.5.0
      • decoders-bencode.0.6.0
      • decoders-bencode.1.0.0
    • decoders-cbor
      • decoders-cbor.0.3.0
      • decoders-cbor.0.4.0
      • decoders-cbor.0.5.0
      • decoders-cbor.0.6.0
      • decoders-cbor.1.0.0
    • decoders-ezjsonm
      • decoders-ezjsonm.0.3.0
      • decoders-ezjsonm.0.4.0
      • decoders-ezjsonm.0.5.0
      • decoders-ezjsonm.0.6.0
      • decoders-ezjsonm.1.0.0
    • decoders-ezxmlm/decoders-ezxmlm.1.0.0
    • decoders-jsonaf/decoders-jsonaf.1.0.0
    • decoders-jsonm
      • decoders-jsonm.0.4.0
      • decoders-jsonm.0.5.0
      • decoders-jsonm.0.6.0
      • decoders-jsonm.1.0.0
    • decoders-msgpck
      • decoders-msgpck.0.5.0
      • decoders-msgpck.0.6.0
      • decoders-msgpck.1.0.0
    • decoders-sexplib
      • decoders-sexplib.0.3.0
      • decoders-sexplib.0.4.0
      • decoders-sexplib.0.5.0
      • decoders-sexplib.0.6.0
      • decoders-sexplib.1.0.0
    • decoders-yojson
      • decoders-yojson.0.3.0
      • decoders-yojson.0.4.0
      • decoders-yojson.0.5.0
      • decoders-yojson.0.6.0
      • decoders-yojson.1.0.0
    • decoders/decoders.1.0.0

35 files changed

+456
-25
lines changed

packages/decoders-bencode/decoders-bencode.0.3.0/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ depends: [
2929
"dune" {>= "1.0"}
3030
"ounit" {with-test}
3131
"containers" {with-test}
32-
"decoders" {>= "0.3.0"}
32+
"decoders" {>= "0.3.0" & < "1.0.0"}
3333
"bencode" {< "2.0"}
3434
"odoc" {with-doc}
3535
"ocaml" { >= "4.03.0" }

packages/decoders-bencode/decoders-bencode.0.4.0/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ depends: [
2929
"dune" {>= "1.0"}
3030
"ounit" {with-test}
3131
"containers" {with-test}
32-
"decoders" {>= "0.3.0"}
32+
"decoders" {>= "0.3.0" & < "1.0.0"}
3333
"bencode" {>= "2.0"}
3434
"odoc" {with-doc}
3535
"ocaml" { >= "4.03.0" }

packages/decoders-bencode/decoders-bencode.0.5.0/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ bug-reports: "https://github.com/mattjbray/ocaml-decoders/issues"
1111
depends: [
1212
"ocaml" {>= "4.03.0"}
1313
"dune" {>= "2.0"}
14-
"decoders" {>= "0.3.0"}
14+
"decoders" {>= "0.3.0" & < "1.0.0"}
1515
"bencode" {>= "2.0"}
1616
"odoc" {with-doc}
1717
"containers" {with-test}

packages/decoders-bencode/decoders-bencode.0.6.0/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ bug-reports: "https://github.com/mattjbray/ocaml-decoders/issues"
1111
depends: [
1212
"ocaml" {>= "4.03.0"}
1313
"dune" {>= "2.0"}
14-
"decoders" {>= "0.3.0"}
14+
"decoders" {>= "0.3.0" & < "1.0.0"}
1515
"bencode" {>= "2.0"}
1616
"odoc" {with-doc}
1717
"containers" {with-test}
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
opam-version: "2.0"
2+
synopsis: "Bencode backend for decoders"
3+
description:
4+
"A combinator library for \"decoding\" JSON-like values into your own Ocaml types, inspired by Elm's `Json.Decode` and `Json.Encode`."
5+
maintainer: ["Matt Bray <[email protected]>"]
6+
authors: ["Simon Cruanes <[email protected]>"]
7+
license: "ISC"
8+
homepage: "https://github.com/mattjbray/ocaml-decoders"
9+
doc: "https://mattjbray.github.io/ocaml-decoders/"
10+
bug-reports: "https://github.com/mattjbray/ocaml-decoders/issues"
11+
depends: [
12+
"dune" {>= "3.1"}
13+
"ocaml" {>= "4.03.0"}
14+
"decoders" {= version}
15+
"bencode" {>= "2.0"}
16+
"odoc" {with-doc}
17+
"containers" {with-test & >= "0.16"}
18+
"ounit2" {with-test}
19+
]
20+
build: [
21+
["dune" "subst"] {dev}
22+
[
23+
"dune"
24+
"build"
25+
"-p"
26+
name
27+
"-j"
28+
jobs
29+
"@install"
30+
"@runtest" {with-test}
31+
"@doc" {with-doc}
32+
]
33+
]
34+
dev-repo: "git+https://github.com/mattjbray/ocaml-decoders.git"
35+
url {
36+
src:
37+
"https://github.com/mattjbray/ocaml-decoders/releases/download/v1.0.0/decoders-1.0.0.tbz"
38+
checksum: [
39+
"sha256=47fe79c4102d0f710eff3ceaef313100d9df3c7945834d3cf38a39742a573597"
40+
"sha512=6fe4e9f99d865fb24c8b1da08ba485282fc8eaf6ed48cedbe8109cae863ad441a95b2643b4ea217a6b012f149682ca69af436ed26a3d646903738fce5651a229"
41+
]
42+
}
43+
x-commit-hash: "0e0afb7e988aa746a1d6d7f1e8ee8ba2e875e382"

packages/decoders-cbor/decoders-cbor.0.3.0/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ depends: [
2929
"dune" {>= "1.0"}
3030
"ounit" {with-test}
3131
"containers" {with-test}
32-
"decoders" {>= "0.3.0"}
32+
"decoders" {>= "0.3.0" & < "1.0.0"}
3333
"cbor"
3434
"odoc" {with-doc}
3535
"ocaml" { >= "4.03.0" }

packages/decoders-cbor/decoders-cbor.0.4.0/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ depends: [
2929
"dune" {>= "1.0"}
3030
"ounit" {with-test}
3131
"containers" {with-test}
32-
"decoders" {>= "0.3.0"}
32+
"decoders" {>= "0.3.0" & < "1.0.0"}
3333
"cbor"
3434
"odoc" {with-doc}
3535
"ocaml" { >= "4.03.0" }

packages/decoders-cbor/decoders-cbor.0.5.0/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ bug-reports: "https://github.com/mattjbray/ocaml-decoders/issues"
1111
depends: [
1212
"ocaml" {>= "4.03.0"}
1313
"dune" {>= "2.0"}
14-
"decoders" {>= "0.3.0"}
14+
"decoders" {>= "0.3.0" & < "1.0.0"}
1515
"cbor"
1616
"odoc" {with-doc}
1717
"containers" {with-test}

packages/decoders-cbor/decoders-cbor.0.6.0/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ bug-reports: "https://github.com/mattjbray/ocaml-decoders/issues"
1111
depends: [
1212
"ocaml" {>= "4.03.0"}
1313
"dune" {>= "2.0"}
14-
"decoders" {>= "0.3.0"}
14+
"decoders" {>= "0.3.0" & < "1.0.0"}
1515
"cbor"
1616
"odoc" {with-doc}
1717
"containers" {with-test}
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
opam-version: "2.0"
2+
synopsis: "CBOR backend for decoders"
3+
description:
4+
"A combinator library for \"decoding\" JSON-like values into your own Ocaml types, inspired by Elm's `Json.Decode` and `Json.Encode`."
5+
maintainer: ["Matt Bray <[email protected]>"]
6+
authors: ["Matt Bray <[email protected]>"]
7+
license: "ISC"
8+
homepage: "https://github.com/mattjbray/ocaml-decoders"
9+
doc: "https://mattjbray.github.io/ocaml-decoders/"
10+
bug-reports: "https://github.com/mattjbray/ocaml-decoders/issues"
11+
depends: [
12+
"dune" {>= "3.1"}
13+
"ocaml" {>= "4.03.0"}
14+
"decoders" {= version}
15+
"cbor"
16+
"odoc" {with-doc}
17+
"containers" {with-test & >= "0.16"}
18+
"ounit2" {with-test}
19+
]
20+
build: [
21+
["dune" "subst"] {dev}
22+
[
23+
"dune"
24+
"build"
25+
"-p"
26+
name
27+
"-j"
28+
jobs
29+
"@install"
30+
"@runtest" {with-test}
31+
"@doc" {with-doc}
32+
]
33+
]
34+
dev-repo: "git+https://github.com/mattjbray/ocaml-decoders.git"
35+
url {
36+
src:
37+
"https://github.com/mattjbray/ocaml-decoders/releases/download/v1.0.0/decoders-1.0.0.tbz"
38+
checksum: [
39+
"sha256=47fe79c4102d0f710eff3ceaef313100d9df3c7945834d3cf38a39742a573597"
40+
"sha512=6fe4e9f99d865fb24c8b1da08ba485282fc8eaf6ed48cedbe8109cae863ad441a95b2643b4ea217a6b012f149682ca69af436ed26a3d646903738fce5651a229"
41+
]
42+
}
43+
x-commit-hash: "0e0afb7e988aa746a1d6d7f1e8ee8ba2e875e382"

0 commit comments

Comments
 (0)