Skip to content

Commit e65d156

Browse files
authored
Merge pull request #9964 from geekosaur/drop-8.2
update `base` bounds for desupported ghc 8.2
2 parents 570960c + c2c914a commit e65d156

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

Cabal-hooks/Cabal-hooks.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ library
2929
build-depends:
3030
Cabal-syntax >= 3.13 && < 3.15,
3131
Cabal >= 3.13 && < 3.15,
32-
base >= 4.9 && < 5,
32+
base >= 4.11 && < 5,
3333
containers >= 0.5.0.0 && < 0.8,
3434
filepath >= 1.3.0.1 && < 1.5,
3535
transformers >= 0.5.6.0 && < 0.7

Cabal-syntax/Cabal-syntax.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ library
2929

3030
build-depends:
3131
array >= 0.4.0.1 && < 0.6,
32-
base >= 4.9 && < 5,
32+
base >= 4.11 && < 5,
3333
binary >= 0.7 && < 0.9,
3434
bytestring >= 0.10.0.0 && < 0.13,
3535
containers >= 0.5.0.0 && < 0.8,

Cabal-tests/Cabal-tests.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ test-suite unit-tests
5757
main-is: UnitTests.hs
5858
build-depends:
5959
array
60-
, base >=4.9 && <5
60+
, base >=4.11 && <5
6161
, bytestring
6262
, Cabal
6363
, Cabal-described

Cabal/Cabal.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ library
3636
build-depends:
3737
Cabal-syntax ^>= 3.13,
3838
array >= 0.4.0.1 && < 0.6,
39-
base >= 4.9 && < 5,
39+
base >= 4.11 && < 5,
4040
bytestring >= 0.10.0.0 && < 0.13,
4141
containers >= 0.5.0.0 && < 0.8,
4242
deepseq >= 1.3.0.1 && < 1.6,

cabal-dev-scripts/cabal-dev-scripts.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ executable gen-spdx
1818
ghc-options: -Wall
1919
build-depends:
2020
, aeson ^>=1.4.1.0 || ^>=1.5.2.0 || ^>=2.2.1.0
21-
, base >=4.10 && <4.20
21+
, base >=4.11 && <4.20
2222
, bytestring
2323
, containers
2424
, Diff ^>=0.4
@@ -35,7 +35,7 @@ executable gen-spdx-exc
3535
ghc-options: -Wall
3636
build-depends:
3737
, aeson ^>=1.4.1.0 || ^>=1.5.2.0 || ^>=2.2.1.0
38-
, base >=4.10 && <4.20
38+
, base >=4.11 && <4.20
3939
, bytestring
4040
, containers
4141
, Diff ^>=0.4

cabal-install-solver/cabal-install-solver.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ library
9999

100100
build-depends:
101101
, array >=0.4 && <0.6
102-
, base >=4.10 && <4.20
102+
, base >=4.11 && <4.20
103103
, bytestring >=0.10.6.0 && <0.13
104104
, Cabal ^>=3.13
105105
, Cabal-syntax ^>=3.13
@@ -131,7 +131,7 @@ Test-Suite unit-tests
131131
UnitTests.Distribution.Solver.Modular.MessageUtils
132132

133133
build-depends:
134-
, base >= 4.10 && <4.20
134+
, base >= 4.11 && <4.20
135135
, Cabal-syntax
136136
, cabal-install-solver
137137
, tasty >= 1.2.3 && <1.6

cabal-install/cabal-install.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ common warnings
5252
ghc-options: -Wnoncanonical-monadfail-instances
5353

5454
common base-dep
55-
build-depends: base >=4.10 && <4.20
55+
build-depends: base >=4.11 && <4.20
5656

5757
common cabal-dep
5858
build-depends: Cabal ^>=3.13

cabal-testsuite/cabal-testsuite.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ common shared
2626
default-language: Haskell2010
2727

2828
build-depends:
29-
, base >= 4.9 && < 4.20
29+
, base >= 4.11 && < 4.20
3030
-- this needs to match the in-tree lib:Cabal version
3131
, Cabal ^>= 3.13.0.0
3232

0 commit comments

Comments
 (0)