fix lower bounds

This commit is contained in:
Stephen Diehl
2016-12-13 12:31:47 +00:00
parent cc0565112f
commit 1f2ed3e4cb
3 changed files with 6 additions and 5 deletions
+1
View File
@@ -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
====
+2 -2
View File
@@ -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
+3 -3
View File
@@ -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