Skip to content

Commit

Permalink
Bump version to 1.0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
basvandijk committed Feb 12, 2015
1 parent 7bc82a3 commit cb624c3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
@@ -1,3 +1,9 @@
1.0.0.3

* Unconditionally add ExceptT instances using transformers-compat.
Courtesy of Adam Bergmark.


1.0.0.2

* Add a base >= 4.5 constraint because monad-control only builds on GHC >= 7.4.
Expand Down
6 changes: 3 additions & 3 deletions monad-control.cabal
@@ -1,5 +1,5 @@
Name: monad-control
Version: 1.0.0.2
Version: 1.0.0.3
Synopsis: Lift control operations, like exception catching, through monad transformers
License: BSD3
License-file: LICENSE
Expand Down Expand Up @@ -42,8 +42,8 @@ Library

Build-depends: base >= 4.5 && < 5
, stm >= 2.3 && < 3
, transformers-base >= 0.4.4 && < 0.5
, transformers >= 0.2 && < 0.5
, transformers-compat == 0.3.*
, transformers-compat >= 0.3 && < 0.4
, transformers-base >= 0.4.4 && < 0.5

Ghc-options: -Wall
4 changes: 2 additions & 2 deletions monad-control.nix
@@ -1,10 +1,10 @@
{ cabal, transformers, transformersBase }:
{ cabal, transformers, transformersBase, transformersCompat }:

cabal.mkDerivation (self: {
pname = "monad-control";
version = "HEAD";
src = ./.;
buildDepends = [ transformers transformersBase ];
buildDepends = [ transformers transformersBase transformersCompat ];
meta = {
homepage = "https://github.com/basvandijk/monad-control";
description = "Lift control operations, like exception catching, through monad transformers";
Expand Down

0 comments on commit cb624c3

Please sign in to comment.