From 00fe3cf9e80e22b32864a94023f1775eca53244a Mon Sep 17 00:00:00 2001 From: Zach Baylin Date: Fri, 20 Oct 2023 14:27:46 -0400 Subject: [PATCH 1/2] OPAM: fix minimum ppxlib version --- diff.opam | 2 +- dune-project | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/diff.opam b/diff.opam index 6af2ec4..d33b80e 100644 --- a/diff.opam +++ b/diff.opam @@ -9,7 +9,7 @@ homepage: "https://github.com/skolemlabs/diff" bug-reports: "https://github.com/skolemlabs/diff/issues" depends: [ "dune" {>= "3.10"} - "ppxlib" {>= "0.25.0"} + "ppxlib" {>= "0.26.0"} "ocamlformat" {with-dev-setup} "ppx_deriving" {with-test} "tezt" {with-test & >= "3.1.1" & < "4.0.0"} diff --git a/dune-project b/dune-project index af174ab..cb8558b 100644 --- a/dune-project +++ b/dune-project @@ -15,7 +15,7 @@ (name diff) (synopsis "A library for generating diffs from product types") (depends - (ppxlib (>= 0.25.0)) + (ppxlib (>= 0.26.0)) (ocamlformat :with-dev-setup) (ppx_deriving :with-test) (tezt (and :with-test (and (>= 3.1.1) (< 4.0.0)))))) From 55b7f64334d5abb6323837f8a5e16d057c000d3c Mon Sep 17 00:00:00 2001 From: Zach Baylin Date: Fri, 20 Oct 2023 14:29:12 -0400 Subject: [PATCH 2/2] Update CHANGES --- CHANGES | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGES b/CHANGES index b12840b..80ccc11 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +unreleased +======== +- #4: fix minimum ppxlib version + 1.0.0 ======== - #1: initial implementation