Skip to content

Commit

Permalink
Merge pull request #9 from jwiegley/master
Browse files Browse the repository at this point in the history
Remove all upper bounds, bump to 0.4
  • Loading branch information
isomorphism committed Feb 25, 2015
2 parents 2904ee2 + afb1e9d commit 63b6922
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 9 deletions.
19 changes: 19 additions & 0 deletions default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{ cabal, bifunctors, mtl, profunctors, semigroupoids, semigroups
, transformers, vector
}:

cabal.mkDerivation (self: {
pname = "these";
version = "0.4.1";
sha256 = "135qiyg87cf9rl10zb681mwnrwxdm37h76dnlia8amkkmpkg4wia";
buildDepends = [
bifunctors mtl profunctors semigroupoids semigroups transformers
vector
];
meta = {
homepage = "https://github.com/isomorphism/these";
description = "An either-or-both data type, with corresponding hybrid error/writer monad transformer";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})
18 changes: 9 additions & 9 deletions these.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: these
Version: 0.3
Version: 0.4.2
Synopsis: An either-or-both data type, with corresponding hybrid error/writer monad transformer.
Homepage: https://github.com/isomorphism/these
License: BSD3
Expand All @@ -17,12 +17,12 @@ Library
Control.Monad.Chronicle.Class,
Control.Monad.Trans.Chronicle
Build-depends: base >= 3 && < 5,
containers >= 0.4 && < 1.0,
mtl >= 2 && < 3,
transformers >= 0.2 && < 1.0,
semigroups >= 0.8 && < 1.0,
bifunctors >= 0.1 && < 4.0,
semigroupoids >= 1.0 && < 4.0,
profunctors >= 3 && < 4,
vector >= 0.4 && < 1.0
containers >= 0.4 && < 0.6,
mtl >= 2 && < 2.2,
transformers >= 0.2 && < 0.4,
semigroups >= 0.8 && < 0.14,
bifunctors >= 0.1 && < 4.2,
semigroupoids >= 1.0 && < 4.1,
profunctors >= 3 && < 4.1,
vector >= 0.4 && < 0.11

0 comments on commit 63b6922

Please sign in to comment.