From 1f2ed3e4cb3c4432ba97a6f8ca680c045fb94695 Mon Sep 17 00:00:00 2001 From: Stephen Diehl Date: Tue, 13 Dec 2016 12:31:47 +0000 Subject: [PATCH] fix lower bounds --- CHANGES.md | 1 + README.md | 4 ++-- src/Protolude.hs | 6 +++--- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 3cfe82cde..dcb35dcde 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,6 +4,7 @@ * Expose `Symbol` and `Nat` types from `GHC.TypeLits` by default. * Switch exported `(<>)` to be from `Data.Monoid` instead of Semigroup. * Expose `putByteString` and `putLByteString` monomorphic versions of `putStrLn` functions +* Export `ExceptT`, `ReaderT`, and `StateT` constructors. 0.1.9 ==== diff --git a/README.md b/README.md index 6569908ec..c12b2451a 100644 --- a/README.md +++ b/README.md @@ -92,9 +92,8 @@ tracks Stack LTS resolver. | Dependencies | Lower | Upper | | ----------- | -------- | -------- | | array | | 0.5 | -| async | 2.1 | 2.2 | +| async | 2.0 | 2.2 | | base | 4.6 | 4.10 | -| binary | | 0.7 | | bytestring | 0.10 | 0.11 | | containers | 0.5 | 0.6 | | deepseq | 1.3 | 1.5 | @@ -104,6 +103,7 @@ tracks Stack LTS resolver. | safe | 0.3 | 0.4 | | stm | 2.4 | 2.5 | | text | 1.2 | 1.3 | +| hashable | 1.2 | 1.3 | | transformers | 0.4 | 0.6 | FAQs diff --git a/src/Protolude.hs b/src/Protolude.hs index 73892ba61..d9c990949 100644 --- a/src/Protolude.hs +++ b/src/Protolude.hs @@ -223,7 +223,7 @@ import Data.Void as X ( import Control.Monad.State as X ( MonadState , State - , StateT + , StateT(StateT) , put , get , gets @@ -243,7 +243,7 @@ import Control.Monad.State as X ( import Control.Monad.Reader as X ( MonadReader , Reader - , ReaderT + , ReaderT(ReaderT) , ask , asks , local @@ -255,7 +255,7 @@ import Control.Monad.Reader as X ( import Control.Monad.Except as X ( MonadError , Except - , ExceptT + , ExceptT(ExceptT) , throwError , catchError , runExcept