Skip to content

Commit

Permalink
fixed dependencies bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
zohl committed Oct 23, 2017
1 parent 86bacbe commit 29786c2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 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.6] - 2017-10-23
### Changed
- Fixed dependencies' bounds.

## [0.5.0.5] - 2017-07-13
### Changed
- Fixed dependencies' bounds.
Expand Down Expand Up @@ -121,7 +125,8 @@
- Initial version of the package.


[HEAD]: ../../compare/v0.5.0.5...HEAD
[HEAD]: ../../compare/v0.5.0.6...HEAD
[0.5.0.6]: ../../compare/v0.5.0.5...v0.5.0.6
[0.5.0.5]: ../../compare/v0.5.0.4...v0.5.0.5
[0.5.0.4]: ../../compare/v0.5.0.3...v0.5.0.4
[0.5.0.3]: ../../compare/v0.5.0.2...v0.5.0.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.5";
version = "0.5.0.6";
src = ./.;
libraryHaskellDepends = [
base base64-bytestring blaze-builder bytestring cereal cookie
Expand Down
8 changes: 4 additions & 4 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.5
version: 0.5.0.6
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 @@ -54,7 +54,7 @@ library
, cryptonite >= 0.14 && < 0.25
, data-default
, exceptions >= 0.8 && < 0.9
, http-types >= 0.9 && < 0.10
, http-types >= 0.10 && < 0.11
, memory >= 0.11 && < 0.15
, mtl >= 2.0 && < 3.0
, servant >= 0.5 && < 0.12
Expand Down Expand Up @@ -129,7 +129,7 @@ executable example
, exceptions
, filepath
, http-media
, http-types
, http-types >= 0.10 && < 0.11
, mtl >= 2.0 && < 3.0
, servant >= 0.5 && < 0.12
, servant-auth-cookie
Expand Down Expand Up @@ -182,7 +182,7 @@ test-suite example-tests
, directory
, filepath
, http-media
, http-types
, http-types >= 0.10 && < 0.11
, hspec >= 2.0 && < 3.0
, hspec-wai
, mtl >= 2.0 && < 3.0
Expand Down

0 comments on commit 29786c2

Please sign in to comment.