Skip to content

Commit

Permalink
fixed dependencies bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
zohl committed May 24, 2017
1 parent 22aca29 commit d373507
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [HEAD]

## [0.5.0.3] - 2017-05-24
### Changed
- Fixed dependencies' bounds.

## [0.5.0.2] - 2017-04-26
### Changed
- Fixed dependencies' bounds.
Expand Down Expand Up @@ -109,7 +113,8 @@
- Initial version of the package.


[HEAD]: ../../compare/v0.5.0.2...HEAD
[HEAD]: ../../compare/v0.5.0.3...HEAD
[0.5.0.3]: ../../compare/v0.5.0.2...v0.5.0.3
[0.5.0.2]: ../../compare/v0.5.0.1...v0.5.0.2
[0.5.0.1]: ../../compare/v0.5.0...v0.5.0.1
[0.5.0]: ../../compare/v0.4.4...v0.5.0
Expand Down
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}:
mkDerivation {
pname = "servant-auth-cookie";
version = "0.5.0.2";
version = "0.5.0.3";
src = ./.;
libraryHaskellDepends = [
base base64-bytestring blaze-builder bytestring cereal cookie
Expand Down
16 changes: 8 additions & 8 deletions servant-auth-cookie.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: servant-auth-cookie
version: 0.5.0.2
version: 0.5.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
Expand Down Expand Up @@ -57,8 +57,8 @@ library
, http-types >= 0.9 && < 0.10
, memory >= 0.11 && < 0.15
, mtl >= 2.0 && < 3.0
, servant >= 0.5 && < 0.11
, servant-server >= 0.5 && < 0.11
, servant >= 0.5 && < 0.12
, servant-server >= 0.5 && < 0.12
, tagged == 0.8.*
, time >= 1.5 && < 1.8.1
, transformers >= 0.4 && < 0.6
Expand Down Expand Up @@ -103,7 +103,7 @@ test-suite tests
, deepseq >= 1.3 && < 1.5
, hspec >= 2.0 && < 3.0
, servant-auth-cookie
, servant-server >= 0.5 && < 0.11
, servant-server >= 0.5 && < 0.12
, transformers >= 0.4 && < 0.6
, time >= 1.5 && < 1.8.1
if !impl(ghc >= 7.8)
Expand Down Expand Up @@ -131,10 +131,10 @@ executable example
, http-media
, http-types
, mtl >= 2.0 && < 3.0
, servant >= 0.5 && < 0.11
, servant >= 0.5 && < 0.12
, servant-auth-cookie
, servant-blaze >= 0.5 && < 0.10
, servant-server >= 0.5 && < 0.11
, servant-server >= 0.5 && < 0.12
, text
, time
, transformers >= 0.4 && < 0.6
Expand Down Expand Up @@ -189,7 +189,7 @@ test-suite example-tests
, QuickCheck >= 2.4 && < 3.0
, servant-auth-cookie
, servant-blaze >= 0.5 && < 0.10
, servant-server >= 0.5 && < 0.11
, servant-server >= 0.5 && < 0.12
, text
, time >= 1.5 && < 1.8.1
, transformers >= 0.4 && < 0.6
Expand Down Expand Up @@ -230,7 +230,7 @@ benchmark bench
, criterion >= 0.6.2.1 && < 1.2
, cryptonite >= 0.14 && < 0.24
, servant-auth-cookie
, servant-server >= 0.5 && < 0.11
, servant-server >= 0.5 && < 0.12
if flag(dev)
ghc-options: -Wall -Werror
else
Expand Down
3 changes: 3 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ let
# cryptonite = dontCheck (self.callPackage ./deps/cryptonite-0.23.nix {});
# foundation = dontCheck (self.callPackage ./deps/foundation-0.0.8.nix {});
# memory = dontCheck (self.callPackage ./deps/memory-0.14.5.nix {});
servant = dontCheck (self.callPackage ./deps/servant-0.11.nix {});
servant-server = dontCheck (self.callPackage ./deps/servant-server-0.11.nix {});
servant-blaze = dontCheck (self.callPackage ./deps/servant-blaze-0.7.1.nix {});
};
};

Expand Down

0 comments on commit d373507

Please sign in to comment.