diff --git a/CHANGELOG.md b/CHANGELOG.md index caac2ea..643e084 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Change Log ## [HEAD] +## [0.6.0.3] - 2018-01-14 +### Changed +- Fixed dependencies' bounds. + ## [0.6.0.2] - 2018-01-13 ### Added - `CookiedWrapperClass` supports `MonadIO`- and `MonadThrow`-constrained monads. @@ -170,7 +174,8 @@ - Initial version of the package. -[HEAD]: ../../compare/v0.6.0.2...HEAD +[HEAD]: ../../compare/v0.6.0.3...HEAD +[0.6.0.3]: ../../compare/v0.6.0.2...v0.6.0.3 [0.6.0.2]: ../../compare/v0.6.0.1...v0.6.0.2 [0.6.0.1]: ../../compare/v0.6.0...v0.6.0.1 [0.6.0]: ../../compare/v0.5.0.7...v0.6.0 diff --git a/default.nix b/default.nix index cfe70b0..c1a8755 100644 --- a/default.nix +++ b/default.nix @@ -8,7 +8,7 @@ }: mkDerivation { pname = "servant-auth-cookie"; - version = "0.6.0.2"; + version = "0.6.0.3"; src = ./.; configureFlags = [ "-fbuild-examples" "-fdev" "-fservant91" ]; isLibrary = true; diff --git a/servant-auth-cookie.cabal b/servant-auth-cookie.cabal index 9b9d70f..8fbf0d4 100644 --- a/servant-auth-cookie.cabal +++ b/servant-auth-cookie.cabal @@ -1,5 +1,5 @@ name: servant-auth-cookie -version: 0.6.0.2 +version: 0.6.0.3 synopsis: Authentication via encrypted cookies description: Authentication via encrypted client-side cookies, inspired by client-session library by Michael Snoyman and based on @@ -55,7 +55,7 @@ library , cryptonite >= 0.14 && < 0.25 , data-default , exceptions >= 0.8 && < 0.9 - , http-types >= 0.9 && < 0.11 + , http-types >= 0.9 && < 0.12 , memory >= 0.11 && < 0.15 , mtl >= 2.0 && < 3.0 , servant >= 0.5 && < 0.13 @@ -134,7 +134,7 @@ executable example , exceptions , filepath , http-media - , http-types >= 0.9 && < 0.11 + , http-types >= 0.9 && < 0.12 , mtl >= 2.0 && < 3.0 , servant >= 0.5 && < 0.13 , servant-auth-cookie @@ -191,7 +191,7 @@ test-suite example-tests , directory , filepath , http-media - , http-types >= 0.9 && < 0.11 + , http-types >= 0.9 && < 0.12 , hspec >= 2.0 && < 3.0 , hspec-wai , mtl >= 2.0 && < 3.0 diff --git a/shell.nix b/shell.nix index 140a310..1a02de9 100644 --- a/shell.nix +++ b/shell.nix @@ -10,7 +10,6 @@ let haskellPackages_ = haskellPackages.override { overrides = self: super: { -cereal-time = dontCheck (self.callPackage /home/user/src/haskell/_deps/cereal-time-0.1.0.0.nix {}); }; };