Skip to content

Commit a968518

Browse files
authored
allow QuickCheck 2.16 (fixes #1836) (#1837)
1 parent e713fa6 commit a968518

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ test-suite spec
6363
-- test dependencies
6464
build-depends:
6565
hspec >= 2.5.5 && < 2.12
66-
, QuickCheck >= 2.11.3 && < 2.16
66+
, QuickCheck >= 2.11.3 && < 2.17
6767
, aeson >= 1.3.1.1 && < 3
6868
, bytestring >= 0.11 && < 0.13
6969
, http-client >= 0.5.13.1 && < 0.8

servant-auth/servant-auth-docs/servant-auth-docs.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ test-suite doctests
5252
base,
5353
servant-auth-docs,
5454
doctest >= 0.16 && < 0.25,
55-
QuickCheck >= 2.11.3 && < 2.16,
55+
QuickCheck >= 2.11.3 && < 2.17,
5656
template-haskell
5757
ghc-options: -Wall -threaded
5858
hs-source-dirs: test
@@ -80,6 +80,6 @@ test-suite spec
8080
build-depends:
8181
servant-auth-docs
8282
, hspec >= 2.5.5 && < 2.12
83-
, QuickCheck >= 2.11.3 && < 2.16
83+
, QuickCheck >= 2.11.3 && < 2.17
8484

8585
default-language: Haskell2010

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ test-suite spec
124124
build-depends:
125125
servant-auth-server
126126
, hspec >= 2.5.5 && < 2.12
127-
, QuickCheck >= 2.11.3 && < 2.16
127+
, QuickCheck >= 2.11.3 && < 2.17
128128
, http-client >= 0.5.13.1 && < 0.8
129129
, lens-aeson >= 1.0.2 && < 1.3
130130
, warp >= 3.2.25 && < 3.5

servant-auth/servant-auth-swagger/servant-auth-swagger.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ test-suite spec
6464
build-depends:
6565
servant-auth-swagger
6666
, hspec >= 2.5.5 && < 2.12
67-
, QuickCheck >= 2.11.3 && < 2.16
67+
, QuickCheck >= 2.11.3 && < 2.17
6868
other-modules:
6969
Servant.Auth.SwaggerSpec
7070
default-language: Haskell2010

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,6 @@ test-suite spec
155155
build-depends:
156156
, deepseq >=1.4.2.0 && <1.6
157157
, hspec >=2.6.0 && <2.12
158-
, QuickCheck >=2.12.6.1 && <2.16
158+
, QuickCheck >=2.12.6.1 && <2.17
159159

160160
build-tool-depends: hspec-discover:hspec-discover >=2.6.0 && <2.12

servant-client/servant-client.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ test-suite spec
174174
, hspec >=2.6.0 && <2.12
175175
, HUnit >=1.6.0.0 && <1.7
176176
, network >=2.8.0.0 && <3.3
177-
, QuickCheck >=2.12.6.1 && <2.16
177+
, QuickCheck >=2.12.6.1 && <2.17
178178
, servant >=0.20.2 && <0.21
179179
, servant-server >=0.20.2 && <0.21
180180

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ test-suite spec
115115
, hspec >= 2.6.0 && < 2.12
116116
, HUnit >= 1.6.0.0 && < 1.7
117117
, network >= 2.8.0.0 && < 3.3
118-
, QuickCheck >= 2.12.6.1 && < 2.16
118+
, QuickCheck >= 2.12.6.1 && < 2.17
119119
, servant-server >= 0.20.2 && < 0.21
120120
, servant >= 0.20.2 && < 0.21
121121

servant-quickcheck/servant-quickcheck.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ library
4848
, mtl >=2.1 && <2.4
4949
, pretty >=1.1 && <1.2
5050
, process >=1.2 && <1.7
51-
, QuickCheck >=2.7 && <2.16
51+
, QuickCheck >=2.7 && <2.17
5252
, servant >=0.20.2 && <0.21
5353
, servant-client >=0.20.2 && <0.21
5454
, servant-server >=0.20.2 && <0.21

servant/servant.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ library
160160
, http-types >=0.12.2 && <0.13
161161
, mmorph >=1.1.2 && <1.3
162162
, network-uri >=2.6.1.0 && <2.7
163-
, QuickCheck >=2.12.6.1 && <2.16
163+
, QuickCheck >=2.12.6.1 && <2.17
164164
, vault >=0.3.1.2 && <0.4
165165

166166
hs-source-dirs: src
@@ -191,7 +191,7 @@ test-suite spec
191191
-- Additional dependencies
192192
build-depends:
193193
, hspec >=2.6.0 && <2.12
194-
, QuickCheck >=2.12.6.1 && <2.16
194+
, QuickCheck >=2.12.6.1 && <2.17
195195
, quickcheck-instances >=0.3.19 && <0.4
196196

197197
build-tool-depends: hspec-discover:hspec-discover >=2.6.0 && <2.12

0 commit comments

Comments
 (0)