From 03e8b6ab5c3035c076ac37c77b1e6f8e5bdf7e71 Mon Sep 17 00:00:00 2001 From: Andreas Abel Date: Tue, 31 Aug 2021 09:07:36 +0200 Subject: [PATCH] Remove upper bound on dlist (outdated) The predominant style seems to not have bounds, so I removed the upper bound rather than replacing it by < 1.1. The changes in dlist-1.0 (removal of eliminator `list`, change of `tail`) do not affect the use of dlist in `bytestring`, namely in the `test-builder` test-suite. --- bytestring.cabal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bytestring.cabal b/bytestring.cabal index 275ae0fbc..33d520191 100644 --- a/bytestring.cabal +++ b/bytestring.cabal @@ -156,7 +156,7 @@ test-suite test-builder Data.ByteString.Builder.Tests build-depends: base, bytestring, ghc-prim, deepseq, - dlist >= 0.5 && < 0.9, + dlist >= 0.5, transformers >= 0.3, tasty, tasty-hunit,