summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG9
-rw-r--r--keysafe.cabal14
2 files changed, 16 insertions, 7 deletions
diff --git a/CHANGELOG b/CHANGELOG
index d209b28..b657f75 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,12 @@
+keysafe (0.20161108) UNRELEASED; urgency=medium
+
+ * Adjust cabal bounds to allow building with ghc 8.0.
+ However, the stack.yaml is still using an old LTS version
+ to avoid polynomial's failure to build with ghc 8.0
+ (https://github.com/mokus0/polynomial/issues/8)
+
+ -- Joey Hess <id@joeyh.name> Tue, 29 Nov 2016 22:27:01 -0400
+
keysafe (0.20161107) unstable; urgency=medium
* The third keysafe server is now available, provided by Purism.
diff --git a/keysafe.cabal b/keysafe.cabal
index a72ab81..388a711 100644
--- a/keysafe.cabal
+++ b/keysafe.cabal
@@ -39,27 +39,27 @@ Executable keysafe
, random == 1.1.*
, secret-sharing == 1.0.*
, raaz == 0.0.2
- , time == 1.6.*
+ , time (>= 1.5 && < 1.7)
, containers == 0.5.*
- , binary == 0.8.*
+ , binary (>= 0.7 && < 0.9)
, text == 1.2.*
, utf8-string == 1.0.*
, unix == 2.7.*
, filepath == 1.4.*
, split == 0.2.*
, directory == 1.2.*
- , process == 1.4.*
+ , process (>= 1.2 && < 1.5)
, optparse-applicative == 0.12.*
, readline == 1.0.*
, zxcvbn-c == 1.0.*
- , servant == 0.8.*
- , servant-server == 0.8.*
- , servant-client == 0.8.*
+ , servant (>= 0.7 && < 0.9)
+ , servant-server (>= 0.7 && < 0.9)
+ , servant-client (>= 0.7 && < 0.9)
, aeson == 0.11.*
, wai == 3.2.*
, warp == 3.2.*
, http-client == 0.4.*
- , transformers == 0.5.*
+ , transformers (>= 0.4 && < 0.6)
, stm == 2.4.*
, socks == 0.5.*
, network == 2.6.*