From 020aea9451cfb30ef66f837c41d4e8c6f7615f53 Mon Sep 17 00:00:00 2001 From: Andreas Herrmann Date: Fri, 24 Oct 2025 09:17:17 +0200 Subject: [PATCH] Set an upper bound on base dependency Required by Hackage. --- capability.cabal | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/capability.cabal b/capability.cabal index 37292da..cb12747 100644 --- a/capability.cabal +++ b/capability.cabal @@ -59,7 +59,7 @@ library Capability.TypeOf Capability.Writer build-depends: - base >= 4.14 + base >= 4.14 && < 5.0 , constraints >= 0.1 , dlist >= 0.8 , exceptions >= 0.6 @@ -99,7 +99,7 @@ test-suite examples Writer main-is: Test.hs build-depends: - base >= 4.14 + base >= 4.14 && < 5.0 , capability , containers , dlist