Skip to content

Commit 086d955

Browse files
authored
Relax bounds on bytestring (#1711)
1 parent e54f2bc commit 086d955

File tree

13 files changed

+15
-15
lines changed

13 files changed

+15
-15
lines changed

servant-auth/servant-auth-client/servant-auth-client.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ library
3232
ghc-options: -Wall
3333
build-depends:
3434
base >= 4.10 && < 4.19
35-
, bytestring >= 0.10.6.0 && < 0.12
35+
, bytestring >= 0.10.6.0 && < 0.13
3636
, containers >= 0.5.6.2 && < 0.7
3737
, servant-auth == 0.4.*
3838
, servant >= 0.13 && < 0.21
@@ -59,13 +59,13 @@ test-suite spec
5959
, servant-auth
6060
, servant
6161
, servant-auth-client
62-
62+
6363
-- test dependencies
6464
build-depends:
6565
hspec >= 2.5.5 && < 2.12
6666
, QuickCheck >= 2.11.3 && < 2.15
6767
, aeson >= 1.3.1.1 && < 3
68-
, bytestring >= 0.10.6.0 && < 0.12
68+
, bytestring >= 0.10.6.0 && < 0.13
6969
, http-client >= 0.5.13.1 && < 0.8
7070
, http-types >= 0.12.2 && < 0.13
7171
, servant-auth-server >= 0.4.2.0 && < 0.5

servant-auth/servant-auth-server/servant-auth-server.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ library
3535
, aeson >= 1.0.0.1 && < 3
3636
, base64-bytestring >= 1.0.0.1 && < 2
3737
, blaze-builder >= 0.4.1.0 && < 0.5
38-
, bytestring >= 0.10.6.0 && < 0.12
38+
, bytestring >= 0.10.6.0 && < 0.13
3939
, case-insensitive >= 1.2.0.11 && < 1.3
4040
, cookie >= 0.4.4 && < 0.5
4141
, data-default-class >= 0.1.2.0 && < 0.2

servant-client-core/servant-client-core.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ library
5151
-- note: mtl lower bound is so low because of GHC-7.8
5252
build-depends:
5353
base >= 4.9 && < 4.19
54-
, bytestring >= 0.10.8.1 && < 0.12
54+
, bytestring >= 0.10.8.1 && < 0.13
5555
, constraints >= 0.2 && < 0.14
5656
, containers >= 0.5.7.1 && < 0.7
5757
, deepseq >= 1.4.2.0 && < 1.5

servant-client-ghcjs/servant-client-ghcjs.cabal

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

4040
build-depends:
4141
base >=4.11 && <5
42-
, bytestring >=0.10 && <0.12
42+
, bytestring >=0.10 && <0.13
4343
, case-insensitive >=1.2.0.0 && <1.3.0.0
4444
, containers >=0.5 && <0.7
4545
, exceptions >=0.8 && <0.11

servant-client/servant-client.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ library
4242
-- text and mtl are bundled starting with GHC-8.4
4343
build-depends:
4444
base >= 4.9 && < 4.19
45-
, bytestring >= 0.10.8.1 && < 0.12
45+
, bytestring >= 0.10.8.1 && < 0.13
4646
, containers >= 0.5.7.1 && < 0.7
4747
, deepseq >= 1.4.2.0 && < 1.5
4848
, mtl ^>= 2.2.2 || ^>= 2.3.1

servant-conduit/servant-conduit.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ library
2929
exposed-modules: Servant.Conduit
3030
build-depends:
3131
base >=4.9 && <5
32-
, bytestring >=0.10.8.1 && <0.12
32+
, bytestring >=0.10.8.1 && <0.13
3333
, conduit >=1.3.1 && <1.4
3434
, mtl ^>=2.2.2 || ^>=2.3.1
3535
, resourcet >=1.2.2 && <1.4

servant-docs/servant-docs.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ library
4242
-- note: mtl lower bound is so low because of GHC-7.8
4343
build-depends:
4444
base >= 4.9 && < 4.19
45-
, bytestring >= 0.10.8.1 && < 0.12
45+
, bytestring >= 0.10.8.1 && < 0.13
4646
, text >= 1.2.3.0 && < 2.1
4747

4848
-- Servant dependencies

servant-http-streams/servant-http-streams.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ library
3939
-- text and mtl are bundled starting with GHC-8.4
4040
build-depends:
4141
base >= 4.9 && < 4.19
42-
, bytestring >= 0.10.8.1 && < 0.12
42+
, bytestring >= 0.10.8.1 && < 0.13
4343
, containers >= 0.5.7.1 && < 0.7
4444
, deepseq >= 1.4.2.0 && < 1.5
4545
, mtl ^>= 2.2.2 || ^>= 2.3.1

servant-machines/servant-machines.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ library
2929
exposed-modules: Servant.Machines
3030
build-depends:
3131
base >=4.9 && <5
32-
, bytestring >=0.10.8.1 && <0.12
32+
, bytestring >=0.10.8.1 && <0.13
3333
, machines >=0.6.4 && <0.8
3434
, mtl ^>=2.2.2 || ^>=2.3.1
3535
, servant >=0.20 && <0.21

servant-pipes/servant-pipes.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ library
2929
exposed-modules: Servant.Pipes
3030
build-depends:
3131
base >=4.9 && <5
32-
, bytestring >=0.10.8.1 && <0.12
32+
, bytestring >=0.10.8.1 && <0.13
3333
, pipes >=4.3.9 && <4.4
3434
, pipes-safe >=2.3.1 && <2.4
3535
, mtl ^>=2.2.2 || ^>=2.3.1

0 commit comments

Comments
 (0)