Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

relax the aeson constraint, allow 1.3.0.0 #919

Merged
merged 1 commit into from Mar 10, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion servant-client/servant-client.cabal
Expand Up @@ -59,7 +59,7 @@ library
-- Other dependencies: Lower bound around what is in the latest Stackage LTS.
-- Here can be exceptions if we really need features from the newer versions.
build-depends:
aeson >= 1.2.3.0 && < 1.3
aeson >= 1.2.3.0 && < 1.4
, base-compat >= 0.9.3 && < 0.10
, attoparsec >= 0.13.2.0 && < 0.14
, http-client >= 0.5.7.1 && < 0.6
Expand Down
2 changes: 1 addition & 1 deletion servant-docs/servant-docs.cabal
Expand Up @@ -56,7 +56,7 @@ library
-- Other dependencies: Lower bound around what is in the latest Stackage LTS.
-- Here can be exceptions if we really need features from the newer versions.
build-depends:
aeson >= 1.2.3.0 && < 1.3
aeson >= 1.2.3.0 && < 1.4
, aeson-pretty >= 0.8.5 && < 0.9
, base-compat >= 0.9.3 && < 0.10
, case-insensitive >= 1.2.0.10 && < 1.3
Expand Down
2 changes: 1 addition & 1 deletion servant-server/servant-server.cabal
Expand Up @@ -75,7 +75,7 @@ library
-- Other dependencies: Lower bound around what is in the latest Stackage LTS.
-- Here can be exceptions if we really need features from the newer versions.
build-depends:
aeson >= 1.2.3.0 && < 1.3
aeson >= 1.2.3.0 && < 1.4
, base-compat >= 0.9.3 && < 0.10
, attoparsec >= 0.13.2.0 && < 0.14
, base64-bytestring >= 1.0.0.1 && < 1.1
Expand Down
2 changes: 1 addition & 1 deletion servant/servant.cabal
Expand Up @@ -82,7 +82,7 @@ library
-- Here can be exceptions if we really need features from the newer versions.
build-depends:
base-compat >= 0.9.3 && < 0.10
, aeson >= 1.2.3.0 && < 1.3
, aeson >= 1.2.3.0 && < 1.4
, attoparsec >= 0.13.2.0 && < 0.14
, case-insensitive >= 1.2.0.10 && < 1.3
, http-api-data >= 0.3.7.1 && < 0.4
Expand Down
3 changes: 2 additions & 1 deletion stack.yaml
@@ -1,5 +1,5 @@
# Let's try to keep resolver at the first day of the month
resolver: nightly-2018-01-01
resolver: nightly-2018-03-01
packages:
- servant-client/
- servant-client-core/
Expand All @@ -13,6 +13,7 @@ extra-deps:
- http-api-data-0.3.7.2
- http-types-0.12
- text-1.2.3.0
- aeson-1.3.0.0

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