Skip to content

Commit

Permalink
OCaml 4.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mununki committed Nov 18, 2024
1 parent c28031a commit 6e824cf
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"ocaml.sandbox": {
"kind": "opam",
"switch": "4.12.1"
"switch": "4.14.0"
}
}
}
2 changes: 1 addition & 1 deletion src/ppx/curried/polyvariants_curried.ml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ let generate_decoder_case generator_settings { prf_desc } =
{
pc_lhs =
( Pconst_string (txt, Location.none, None) |> Pat.constant |> fun v ->
Some v |> Pat.construct (lid "Js.Json.JSONString") );
Some ([], v) |> Pat.construct (lid "Js.Json.JSONString") );
pc_guard = None;
pc_rhs =
[%expr
Expand Down
2 changes: 1 addition & 1 deletion src/ppx/uncurried/polyvariants_uncurried.ml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ let generate_decoder_case generator_settings { prf_desc } =
{
pc_lhs =
( Pconst_string (txt, Location.none, None) |> Pat.constant |> fun v ->
Some v |> Pat.construct (lid "Js.Json.JSONString") );
Some ([], v) |> Pat.construct (lid "Js.Json.JSONString") );
pc_guard = None;
pc_rhs =
[%expr
Expand Down
6 changes: 3 additions & 3 deletions src/ppx_spice.opam
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ homepage: "https://github.com/green-labs/ppx_spice"
bug-reports: "https://github.com/green-labs/ppx_spice/issues"
dev-repo: "git+https://github.com/green-labs/ppx_spice.git"
depends: [
"ocaml" { = "4.12.1"}
"dune" { >= "2.7"}
"ppxlib" { = "0.23.0"}
"ocaml" { = "4.14.0"}
"dune" { >= "2.8"}
"ppxlib" { = "0.24.0"}
]
build: [
["dune" "build" "-p" name "-j" jobs]
Expand Down

0 comments on commit 6e824cf

Please sign in to comment.