From 3ba398df8f0c67dab07ace3315fc358e398e4748 Mon Sep 17 00:00:00 2001 From: Ben Bellick Date: Mon, 14 Oct 2024 15:58:59 -0500 Subject: [PATCH] bump minimal ocaml version to 4.08 This is because of error resulting from ppx_inline_test --- dune-project | 2 +- ppx_deriving_decoders.opam | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dune-project b/dune-project index b2d7367..bc9c773 100644 --- a/dune-project +++ b/dune-project @@ -23,7 +23,7 @@ (description "Using mattjbray/ocaml-decoders, use a ppx to automatically \ generate instances of a decoder for a particular type using PPX.") (depends - ocaml + (ocaml (>= 4.08.0)) dune ppxlib decoders diff --git a/ppx_deriving_decoders.opam b/ppx_deriving_decoders.opam index f87e28b..c073a99 100644 --- a/ppx_deriving_decoders.opam +++ b/ppx_deriving_decoders.opam @@ -12,7 +12,7 @@ homepage: "https://github.com/benbellick/ppx_deriving_decoders" doc: "https://github.com/benbellick/ppx_deriving_decoders" bug-reports: "https://github.com/benbellick/ppx_deriving_decoders/issues" depends: [ - "ocaml" + "ocaml" {>= "4.08.0"} "dune" {>= "3.11"} "ppxlib" "decoders"