From 91520e20ef821ae145372c1858bb0bd10288e4cf Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Tue, 28 May 2019 14:49:13 +0800 Subject: [PATCH] Allow http-api-data 0.4.1 Builds fine and all tests pass here. --- servant-server/servant-server.cabal | 2 +- servant/servant.cabal | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/servant-server/servant-server.cabal b/servant-server/servant-server.cabal index d030bc0e..01e1e4d9 100644 --- a/servant-server/servant-server.cabal +++ b/servant-server/servant-server.cabal @@ -80,7 +80,7 @@ library -- strict dependency as we re-export 'servant' things. build-depends: servant >= 0.16 && < 0.17.1 - , http-api-data >= 0.4 && < 0.4.1 + , http-api-data >= 0.4.1 && < 0.4.2 -- 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. diff --git a/servant/servant.cabal b/servant/servant.cabal index 55b92251..99c65ff0 100644 --- a/servant/servant.cabal +++ b/servant/servant.cabal @@ -98,7 +98,7 @@ library -- We depend (heavily) on the API of these packages: -- i.e. re-export, or allow using without direct dependency build-depends: - http-api-data >= 0.4 && < 0.4.1 + http-api-data >= 0.4.1 && < 0.4.2 , singleton-bool >= 0.1.4 && < 0.1.5 -- Other dependencies: Lower bound around what is in the latest Stackage LTS.