Skip to content

Commit

Permalink
fixed dependencies bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
zohl committed Apr 26, 2017
1 parent 8aebe9a commit 0008bde
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 11 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
deps
dist
cabal-dev
*.o
Expand Down
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [HEAD]

## [0.5.0.2] - 2017-04-26
### Changed
- Fixed dependencies' bounds.

## [0.5.0.1] - 2017-04-16
### Changed
- Fixed incompatibility with older versions of GHC.
Expand Down Expand Up @@ -105,8 +109,9 @@
- Initial version of the package.


[HEAD]: ../../compare/v0.5.0.1...HEAD
[0.5.0]: ../../compare/v0.5.0...v0.5.0.1
[HEAD]: ../../compare/v0.5.0.2...HEAD
[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
[0.4.4]: ../../compare/v0.4.3.3...v0.4.4
[0.4.3.3]: ../../compare/v0.4.3.2...v0.4.3.3
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.1";
version = "0.5.0.2";
src = ./.;
libraryHaskellDepends = [
base base64-bytestring blaze-builder bytestring cereal cookie
Expand Down
12 changes: 6 additions & 6 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.1
version: 0.5.0.2
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 @@ -51,7 +51,7 @@ library
, bytestring
, cereal >= 0.5 && < 0.6
, cookie >= 0.4.1 && < 0.5
, cryptonite >= 0.14 && < 0.23
, cryptonite >= 0.14 && < 0.24
, data-default
, exceptions >= 0.8 && < 0.9
, http-types >= 0.9 && < 0.10
Expand Down Expand Up @@ -98,7 +98,7 @@ test-suite tests
, QuickCheck >= 2.4 && < 3.0
, bytestring
, cereal >= 0.5 && < 0.6
, cryptonite >= 0.14 && < 0.23
, cryptonite >= 0.14 && < 0.24
, data-default
, deepseq >= 1.3 && < 1.5
, hspec >= 2.0 && < 3.0
Expand All @@ -123,7 +123,7 @@ executable example
, blaze-markup >= 0.7 && < 0.9
, bytestring
, cereal >= 0.5 && < 0.6
, cryptonite >= 0.14 && < 0.23
, cryptonite >= 0.14 && < 0.24
, data-default
, directory
, exceptions
Expand Down Expand Up @@ -176,7 +176,7 @@ test-suite example-tests
, bytestring
, cereal >= 0.5 && < 0.6
, exceptions
, cryptonite >= 0.14 && < 0.23
, cryptonite >= 0.14 && < 0.24
, data-default
, deepseq >= 1.3 && < 1.5
, directory
Expand Down Expand Up @@ -228,7 +228,7 @@ benchmark bench
build-depends: base >= 4.7 && < 5.0
, bytestring
, criterion >= 0.6.2.1 && < 1.2
, cryptonite >= 0.14 && < 0.23
, cryptonite >= 0.14 && < 0.24
, servant-auth-cookie
, servant-server >= 0.5 && < 0.11
if flag(dev)
Expand Down
5 changes: 3 additions & 2 deletions shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ let

haskellPackages_ = haskellPackages.override {
overrides = self: super: {
servant = dontCheck self.servant_0_10;
servant-server = dontCheck self.servant-server_0_10;
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 {});
};
};

Expand Down

0 comments on commit 0008bde

Please sign in to comment.