Skip to content

Commit 6ff1c91

Browse files
authored
Merge pull request #110 from tweag/drop-upper-bounds
Drop upper version bounds on Cabal dependencies
2 parents 942696c + 5277af9 commit 6ff1c91

1 file changed

Lines changed: 17 additions & 17 deletions

File tree

capability.cabal

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -59,22 +59,22 @@ library
5959
Capability.TypeOf
6060
Capability.Writer
6161
build-depends:
62-
base >= 4.14 && < 5.0
63-
, constraints >= 0.1 && < 0.15
64-
, dlist >= 0.8 && < 1.1
65-
, exceptions >= 0.6 && < 0.11
66-
, generic-lens >= 2.0 && < 2.4
67-
, lens >= 4.16 && < 5.4
68-
, monad-control >= 1.0 && < 1.1
69-
, mtl >= 2.0 && < 3.0
70-
, mutable-containers >= 0.3 && < 0.4
71-
, primitive >= 0.6 && < 0.10
72-
, reflection >= 2.1 && < 2.2
73-
, safe-exceptions >= 0.1 && < 0.2
74-
, streaming >= 0.2 && < 0.3
75-
, transformers >= 0.5.5 && < 0.7
76-
, unliftio >= 0.2 && < 0.3
77-
, unliftio-core >= 0.1 && < 0.3
62+
base >= 4.14
63+
, constraints >= 0.1
64+
, dlist >= 0.8
65+
, exceptions >= 0.6
66+
, generic-lens >= 2.0
67+
, lens >= 4.16
68+
, monad-control >= 1.0
69+
, mtl >= 2.0
70+
, mutable-containers >= 0.3
71+
, primitive >= 0.6
72+
, reflection >= 2.1
73+
, safe-exceptions >= 0.1
74+
, streaming >= 0.2
75+
, transformers >= 0.5.5
76+
, unliftio >= 0.2
77+
, unliftio-core >= 0.1
7878
if flag(dev)
7979
ghc-options: -Wall -Werror -Wcompat
8080
-Wincomplete-record-updates
@@ -99,7 +99,7 @@ test-suite examples
9999
Writer
100100
main-is: Test.hs
101101
build-depends:
102-
base >= 4.14 && < 5.0
102+
base >= 4.14
103103
, capability
104104
, containers
105105
, dlist

0 commit comments

Comments
 (0)