this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #25720 from NathanReb/release-ppx_deriving_yojson.3.8.0

[new-release] ppx_deriving_yojson 3.8.0

authored by

Marcello Seri and committed by
GitHub
7f4efa6e c9c9d0b7

+43 -7
+1 -1
packages/pa_ppx/pa_ppx.0.10/opam
··· 50 50 "sexplib" { with-test & >= "v0.14.0" } 51 51 "ppx_import" { with-test & >= "1.7.1" } 52 52 "ppx_deriving" { with-test } 53 - "ppx_deriving_yojson" { with-test & >= "3.5.2" } 53 + "ppx_deriving_yojson" { with-test & >= "3.5.2" & < "3.8.0" } 54 54 "ppx_here" { with-test & >= "v0.13.0" } 55 55 "ppx_sexp_conv" { with-test & >= "v0.13.0" } 56 56 # "expect_test_helpers" { with-test & >= "v0.13.0" }
+1 -1
packages/pa_ppx/pa_ppx.0.11/opam
··· 49 49 "sexplib" { with-test & >= "v0.14.0" } 50 50 "ppx_import" { with-test & >= "1.7.1" } 51 51 "ppx_deriving" { with-test } 52 - "ppx_deriving_yojson" { with-test & >= "3.5.2" } 52 + "ppx_deriving_yojson" { with-test & >= "3.5.2" & < "3.8.0" } 53 53 "ppx_here" { with-test & >= "v0.13.0" } 54 54 "ppx_sexp_conv" { with-test & >= "v0.13.0" } 55 55 # "expect_test_helpers" { with-test & >= "v0.13.0" }
+1 -1
packages/pa_ppx/pa_ppx.0.12/opam
··· 50 50 "sexplib" { with-test & >= "v0.14.0" } 51 51 "ppx_import" { with-test & >= "1.7.1" } 52 52 "ppx_deriving" { with-test } 53 - "ppx_deriving_yojson" { with-test & >= "3.5.2" } 53 + "ppx_deriving_yojson" { with-test & >= "3.5.2" & < "3.8.0" } 54 54 "ppx_here" { with-test & >= "v0.13.0" } 55 55 "ppx_sexp_conv" { with-test & >= "v0.13.0" } 56 56 # "expect_test_helpers" { with-test & >= "v0.13.0" }
+1 -1
packages/pa_ppx/pa_ppx.0.13/opam
··· 51 51 "sexplib" { with-test & >= "v0.14.0" } 52 52 "ppx_import" { with-test & >= "1.7.1" } 53 53 "ppx_deriving" { with-test } 54 - "ppx_deriving_yojson" { with-test & >= "3.5.2" } 54 + "ppx_deriving_yojson" { with-test & >= "3.5.2" & < "3.8.0" } 55 55 "ppx_here" { with-test & >= "v0.13.0" } 56 56 "ppx_sexp_conv" { with-test & >= "v0.13.0" } 57 57 # "expect_test_helpers" { with-test & >= "v0.13.0" }
+1 -1
packages/pa_ppx/pa_ppx.0.14/opam
··· 51 51 "sexplib" { with-test & >= "v0.14.0" } 52 52 "ppx_import" { with-test & >= "1.7.1" } 53 53 "ppx_deriving" { with-test } 54 - "ppx_deriving_yojson" { with-test & >= "3.5.2" } 54 + "ppx_deriving_yojson" { with-test & >= "3.5.2" & < "3.8.0" } 55 55 "ppx_here" { with-test & >= "v0.13.0" } 56 56 "ppx_sexp_conv" { with-test & >= "v0.13.0" } 57 57 # "expect_test_helpers" { with-test & >= "v0.13.0" }
+36
packages/ppx_deriving_yojson/ppx_deriving_yojson.3.8.0/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "whitequark <whitequark@whitequark.org>" 3 + authors: [ "whitequark <whitequark@whitequark.org>" ] 4 + license: "MIT" 5 + homepage: "https://github.com/ocaml-ppx/ppx_deriving_yojson" 6 + bug-reports: "https://github.com/ocaml-ppx/ppx_deriving_yojson/issues" 7 + dev-repo: "git+https://github.com/ocaml-ppx/ppx_deriving_yojson.git" 8 + tags: [ "syntax" "json" ] 9 + build: [ 10 + ["dune" "subst"] {dev} 11 + ["dune" "build" "-p" name "-j" jobs] 12 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 13 + ] 14 + depends: [ 15 + "ocaml" {>= "4.05.0"} 16 + "dune" {>= "1.0"} 17 + "yojson" {>= "1.6.0"} 18 + "ppx_deriving" {>= "5.1"} 19 + "ppxlib" {>= "0.30.0"} 20 + "ounit2" {with-test} 21 + ] 22 + synopsis: 23 + "JSON codec generator for OCaml" 24 + description: """ 25 + ppx_deriving_yojson is a ppx_deriving plugin that provides 26 + a JSON codec generator. 27 + """ 28 + url { 29 + src: 30 + "https://github.com/ocaml-ppx/ppx_deriving_yojson/releases/download/v3.8.0/ppx_deriving_yojson-3.8.0.tbz" 31 + checksum: [ 32 + "sha256=fdcbc548be418f061828664a1012ccba6cfba6a35578ea9cbf75fed498e0c2a1" 33 + "sha512=2ce0aed3b1e7b444d368a4f7142da07aff328effcc017435ccd9d45cb518659c69a48b6c8699c800bdee02d65fcea9227f863b2340f7a4c1a5b579b8c5ba2a19" 34 + ] 35 + } 36 + x-commit-hash: "0644cd505cae97ddb4b2f701a19657fe76cc4a33"
+1 -1
packages/safemoney/safemoney.0.1.0/opam
··· 20 20 "ppx_jane" 21 21 "ppx_deriving" 22 22 "ppx_yojson_conv" 23 - "ppx_deriving_yojson" 23 + "ppx_deriving_yojson" {< "3.8.0"} 24 24 "odoc" {with-doc} 25 25 ] 26 26 build: [
+1 -1
packages/safemoney/safemoney.0.1.1/opam
··· 19 19 "ppx_jane" {>= "v0.16.0"} 20 20 "ppx_deriving" 21 21 "ppx_yojson_conv" 22 - "ppx_deriving_yojson" 22 + "ppx_deriving_yojson" {< "3.8.0"} 23 23 "odoc" {with-doc} 24 24 ] 25 25 build: [