Skip to content

Commit

Permalink
fixed dependencies bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
zohl committed Jan 14, 2018
1 parent f8e1b1b commit f67e773
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
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.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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 {});
};
};

Expand Down

0 comments on commit f67e773

Please sign in to comment.