diff options
-rw-r--r-- | compiler/ghc.cabal.in | 2 | ||||
-rw-r--r-- | ghc/ghc-bin.cabal.in | 2 | ||||
-rw-r--r-- | hadrian/hadrian.cabal | 2 | ||||
-rw-r--r-- | libraries/ghci/ghci.cabal.in | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/compiler/ghc.cabal.in b/compiler/ghc.cabal.in index 4b66f8dc33..2e2eb68ec1 100644 --- a/compiler/ghc.cabal.in +++ b/compiler/ghc.cabal.in @@ -88,7 +88,7 @@ Library filepath >= 1 && < 1.5, template-haskell == 2.19.*, hpc == 0.6.*, - transformers == 0.5.*, + transformers >= 0.5 && < 0.7, exceptions == 0.10.*, stm, ghc-boot == @ProjectVersionMunged@, diff --git a/ghc/ghc-bin.cabal.in b/ghc/ghc-bin.cabal.in index 5da5dc0b17..88e559048c 100644 --- a/ghc/ghc-bin.cabal.in +++ b/ghc/ghc-bin.cabal.in @@ -38,7 +38,7 @@ Executable ghc process >= 1 && < 1.7, filepath >= 1 && < 1.5, containers >= 0.5 && < 0.7, - transformers == 0.5.*, + transformers >= 0.5 && < 0.7, ghc-boot == @ProjectVersionMunged@, ghc == @ProjectVersionMunged@ diff --git a/hadrian/hadrian.cabal b/hadrian/hadrian.cabal index 03b7f568c1..b220f27462 100644 --- a/hadrian/hadrian.cabal +++ b/hadrian/hadrian.cabal @@ -158,7 +158,7 @@ executable hadrian , mtl >= 2.2 && < 2.4 , parsec >= 3.1 && < 3.2 , shake >= 0.18.3 && < 0.20 - , transformers >= 0.4 && < 0.6 + , transformers >= 0.4 && < 0.7 , unordered-containers >= 0.2.1 && < 0.3 , text >= 1.2 && < 3 ghc-options: -Wall diff --git a/libraries/ghci/ghci.cabal.in b/libraries/ghci/ghci.cabal.in index 16c6ffafe3..284c80438b 100644 --- a/libraries/ghci/ghci.cabal.in +++ b/libraries/ghci/ghci.cabal.in @@ -80,7 +80,7 @@ library ghc-boot == @ProjectVersionMunged@, ghc-heap == @ProjectVersionMunged@, template-haskell == 2.19.*, - transformers == 0.5.* + transformers >= 0.5 && < 0.7 if !os(windows) Build-Depends: unix >= 2.7 && < 2.9 |