From c41d589dd57c35ab5ec9ee1c5c84c9b8e206ba09 Mon Sep 17 00:00:00 2001 From: Simmo Saan Date: Fri, 11 Mar 2022 08:54:18 +0200 Subject: [PATCH] Weaken ppxlib lower bound to 0.9.0 This gives the OCaml 4.08 AST with attr_name. --- dune-project | 2 +- ppx_viewpattern.opam | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dune-project b/dune-project index f1deee6..b2d7d0b 100644 --- a/dune-project +++ b/dune-project @@ -11,6 +11,6 @@ (synopsis "View patterns in OCaml") (description "Transformation for view patterns in OCaml. Attempts to imitate Haskell view patterns.") (depends - (ppxlib (>= 0.17.0)) + (ppxlib (>= 0.9.0)) (ounit2 :with-test) (qcheck-ounit :with-test))) diff --git a/ppx_viewpattern.opam b/ppx_viewpattern.opam index ff32dbb..ae0e526 100644 --- a/ppx_viewpattern.opam +++ b/ppx_viewpattern.opam @@ -10,7 +10,7 @@ homepage: "https://github.com/sim642/ppx_viewpattern" bug-reports: "https://github.com/sim642/ppx_viewpattern/issues" depends: [ "dune" {>= "2.8"} - "ppxlib" {>= "0.17.0"} + "ppxlib" {>= "0.9.0"} "ounit2" {with-test} "qcheck-ounit" {with-test} "odoc" {with-doc}