From 1cf21a602535b6b263fef9548521353912115d87 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Mon, 22 Apr 2024 21:44:33 -0700 Subject: [PATCH] Allow QuickCheck 2.15. --- pandoc-types.cabal | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandoc-types.cabal b/pandoc-types.cabal index e949a56..12ec9c6 100644 --- a/pandoc-types.cabal +++ b/pandoc-types.cabal @@ -56,7 +56,7 @@ Library bytestring >= 0.9 && < 0.13, aeson >= 0.6.2 && < 2.3, transformers >= 0.2 && < 0.7, - QuickCheck >= 2.10 && < 2.15 + QuickCheck >= 2.10 && < 2.16 if !impl(ghc >= 8.0) Build-depends: semigroups == 0.18.* ghc-options: -Wall @@ -77,7 +77,7 @@ test-suite test-pandoc-types test-framework >= 0.3 && < 0.9, test-framework-hunit >= 0.2 && < 0.4, test-framework-quickcheck2 >= 0.2.9 && < 0.4, - QuickCheck >= 2.10 && < 2.15, + QuickCheck >= 2.10 && < 2.16, HUnit >= 1.2 && < 1.7, template-haskell >= 2 ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -O2