From 5da717f127800a209ef627ac548c1e4c80934c1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Tempel?= Date: Fri, 10 Mar 2023 03:22:29 +0100 Subject: [PATCH] Widen template-haskell version constraint to allow version 2.19 This allows freer-simple to be used with GHC 9.4.X. Prior versions of template-haskell are not compatible with GHC 9.4. The 2.19 release of template-haskell seems to be fully compatible with freer-simple. That is, tests still pass and I haven't noticed any issues in my own project (which use freer-simple). Fixes #40 --- freer-simple.cabal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freer-simple.cabal b/freer-simple.cabal index 77bfabe..c8ce372 100644 --- a/freer-simple.cabal +++ b/freer-simple.cabal @@ -84,7 +84,7 @@ library build-depends: , natural-transformation >= 0.2 , transformers-base - , template-haskell >= 2.11 && < 2.19 + , template-haskell >= 2.11 && < 2.20 executable freer-simple-examples import: common