Skip to content

Commit 306c332

Browse files
emmanueltouzerysoenkehahn
authored andcommitted
relax the aeson constraint, allow 1.3.0.0, fixes commercialhaskell/stackage#3337
1 parent 7067c7d commit 306c332

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

servant-client/servant-client.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ library
5959
-- Other dependencies: Lower bound around what is in the latest Stackage LTS.
6060
-- Here can be exceptions if we really need features from the newer versions.
6161
build-depends:
62-
aeson >= 1.2.3.0 && < 1.3
62+
aeson >= 1.2.3.0 && < 1.4
6363
, base-compat >= 0.9.3 && < 0.10
6464
, attoparsec >= 0.13.2.0 && < 0.14
6565
, http-client >= 0.5.7.1 && < 0.6

servant-docs/servant-docs.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ library
5656
-- Other dependencies: Lower bound around what is in the latest Stackage LTS.
5757
-- Here can be exceptions if we really need features from the newer versions.
5858
build-depends:
59-
aeson >= 1.2.3.0 && < 1.3
59+
aeson >= 1.2.3.0 && < 1.4
6060
, aeson-pretty >= 0.8.5 && < 0.9
6161
, base-compat >= 0.9.3 && < 0.10
6262
, case-insensitive >= 1.2.0.10 && < 1.3

servant-server/servant-server.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ library
7575
-- Other dependencies: Lower bound around what is in the latest Stackage LTS.
7676
-- Here can be exceptions if we really need features from the newer versions.
7777
build-depends:
78-
aeson >= 1.2.3.0 && < 1.3
78+
aeson >= 1.2.3.0 && < 1.4
7979
, base-compat >= 0.9.3 && < 0.10
8080
, attoparsec >= 0.13.2.0 && < 0.14
8181
, base64-bytestring >= 1.0.0.1 && < 1.1

servant/servant.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ library
8282
-- Here can be exceptions if we really need features from the newer versions.
8383
build-depends:
8484
base-compat >= 0.9.3 && < 0.10
85-
, aeson >= 1.2.3.0 && < 1.3
85+
, aeson >= 1.2.3.0 && < 1.4
8686
, attoparsec >= 0.13.2.0 && < 0.14
8787
, case-insensitive >= 1.2.0.10 && < 1.3
8888
, http-api-data >= 0.3.7.1 && < 0.4

stack.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Let's try to keep resolver at the first day of the month
2-
resolver: nightly-2018-01-01
2+
resolver: nightly-2018-03-01
33
packages:
44
- servant-client/
55
- servant-client-core/
@@ -13,6 +13,7 @@ extra-deps:
1313
- http-api-data-0.3.7.2
1414
- http-types-0.12
1515
- text-1.2.3.0
16+
- aeson-1.3.0.0
1617

1718
# allow-newer: true # ignores all bounds, that's a sledgehammer
1819
# - doc/tutorial/

0 commit comments

Comments
 (0)