Skip to content

Commit

Permalink
Add upper bound on ppx_deriving_yojson in safemoney
Browse files Browse the repository at this point in the history
This will prevent build breakage following a fix in ppx_deriving_yojson
that now makes it properly report errors when `[@@deriving yojson]` is
used on nodes it does not support, such as exception declaration.

Signed-off-by: Nathan Rebours <nathan.p.rebours@gmail.com>
  • Loading branch information
NathanReb committed Apr 26, 2024
1 parent adca624 commit 7edd888
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/safemoney/safemoney.0.1.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ depends: [
"ppx_jane"
"ppx_deriving"
"ppx_yojson_conv"
"ppx_deriving_yojson"
"ppx_deriving_yojson" {< "3.8.0"}
"odoc" {with-doc}
]
build: [
Expand Down
2 changes: 1 addition & 1 deletion packages/safemoney/safemoney.0.1.1/opam
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ depends: [
"ppx_jane" {>= "v0.16.0"}
"ppx_deriving"
"ppx_yojson_conv"
"ppx_deriving_yojson"
"ppx_deriving_yojson" {< "3.8.0"}
"odoc" {with-doc}
]
build: [
Expand Down

0 comments on commit 7edd888

Please sign in to comment.