Skip to content

Commit c93199f

Browse files
authored
Merge pull request #7346 from Bodigrim/master
Allow bytestring-0.11 + tree-diff-0.2
2 parents 90a7e69 + d67104f commit c93199f

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

Cabal-tests/Cabal-tests.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ test-suite parser-tests
107107
build-depends: semigroups
108108

109109
if impl(ghc >=7.8)
110-
build-depends: tree-diff ==0.1.*
110+
build-depends: tree-diff >=0.1 && <0.3
111111

112112
test-suite check-tests
113113
type: exitcode-stdio-1.0
@@ -174,7 +174,7 @@ test-suite hackage-tests
174174
, tar >=0.5.0.3 && <0.6
175175

176176
if impl(ghc >=7.8)
177-
build-depends: tree-diff ==0.1.*
177+
build-depends: tree-diff >=0.1 && <0.3
178178

179179
ghc-options: -Wall -rtsopts -threaded
180180
default-extensions: CPP

Cabal-tree-diff/Cabal-tree-diff.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ library
1212
build-depends:
1313
, base
1414
, Cabal ^>=3.5.0.0
15-
, tree-diff ^>=0.1
15+
, tree-diff ^>=0.1 || ^>=0.2
1616

1717
exposed-modules: Data.TreeDiff.Instances.Cabal
1818
other-modules:

bootstrap/cabal-bootstrap-gen.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ executable cabal-bootstrap-gen
1010
build-depends:
1111
, aeson ^>=1.5.2.0
1212
, base ^>=4.12.0.0 || ^>=4.13.0.0 || ^>=4.14.0.0
13-
, bytestring ^>=0.10.8.2
13+
, bytestring ^>=0.10.8.2 || ^>= 0.11.0.0
1414
, Cabal ^>=3.2.0.0
1515
, cabal-install-parsers ^>=0.3.0.1
1616
, cabal-plan ^>=0.7.0.0

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ library
105105
, array >=0.4 && <0.6
106106
, base >=4.8 && <4.15
107107
, binary >=0.7.3 && <0.9
108-
, bytestring ^>=0.10.6.0
108+
, bytestring >=0.10.6.0 && <0.12
109109
, Cabal ^>=3.5
110110
, containers >=0.5.6.2 && <0.7
111111
, filepath ^>=1.4.0.0

cabal-install/cabal-install.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ executable cabal
269269
base >= 4.8 && < 4.15,
270270
base16-bytestring >= 0.1.1 && < 1.1.0.0,
271271
binary >= 0.7.3 && < 0.9,
272-
bytestring >= 0.10.6.0 && < 0.11,
272+
bytestring >= 0.10.6.0 && < 0.12,
273273
Cabal == 3.5.*,
274274
containers >= 0.5.6.2 && < 0.7,
275275
cryptohash-sha256 >= 0.11 && < 0.12,

cabal-testsuite/cabal-testsuite.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ library
5959
, async ^>= 2.2.1
6060
, attoparsec ^>= 0.13.2.2
6161
, base16-bytestring ^>= 0.1.1.6 || ^>= 1.0.0.0
62-
, bytestring ^>= 0.10.0.2
62+
, bytestring ^>= 0.10.0.2 || ^>= 0.11.0.0
6363
, containers ^>= 0.5.0.0 || ^>= 0.6.0.1
6464
, cryptohash-sha256 ^>= 0.11.101.0
6565
, directory ^>= 1.2.0.1 || ^>= 1.3.0.0

0 commit comments

Comments
 (0)