commit 0f4f58b2aa1d0e9731555645d299f0a5d93d2377
parent 9e1f82b11e653621e9e7eb64bf969c19b06c708d
Author: Jared Tobin <jared@jtobin.ca>
Date: Thu, 20 Jul 2017 18:08:55 -0230
Fix lower-bound on base.
Resolves #4.
Diffstat:
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/mwc-probability.cabal b/mwc-probability.cabal
@@ -1,5 +1,5 @@
name: mwc-probability
-version: 1.3.0
+version: 1.3.1
homepage: http://github.com/jtobin/mwc-probability
license: MIT
license-file: LICENSE
@@ -51,8 +51,8 @@ library
default-language: Haskell2010
hs-source-dirs: src
build-depends:
- base > 4 && < 6
- , mwc-random > 0.13 && < 0.14
- , primitive >= 0.6 && < 1.0
- , transformers >= 0.5 && < 1.0
+ base >= 4.8 && < 6
+ , mwc-random > 0.13 && < 0.14
+ , primitive >= 0.6 && < 1.0
+ , transformers >= 0.5 && < 1.0