fix lower bounds
This commit is contained in:
@@ -4,6 +4,7 @@
|
|||||||
* Expose `Symbol` and `Nat` types from `GHC.TypeLits` by default.
|
* Expose `Symbol` and `Nat` types from `GHC.TypeLits` by default.
|
||||||
* Switch exported `(<>)` to be from `Data.Monoid` instead of Semigroup.
|
* Switch exported `(<>)` to be from `Data.Monoid` instead of Semigroup.
|
||||||
* Expose `putByteString` and `putLByteString` monomorphic versions of `putStrLn` functions
|
* Expose `putByteString` and `putLByteString` monomorphic versions of `putStrLn` functions
|
||||||
|
* Export `ExceptT`, `ReaderT`, and `StateT` constructors.
|
||||||
|
|
||||||
0.1.9
|
0.1.9
|
||||||
====
|
====
|
||||||
|
|||||||
@@ -92,9 +92,8 @@ tracks Stack LTS resolver.
|
|||||||
| Dependencies | Lower | Upper |
|
| Dependencies | Lower | Upper |
|
||||||
| ----------- | -------- | -------- |
|
| ----------- | -------- | -------- |
|
||||||
| array | | 0.5 |
|
| array | | 0.5 |
|
||||||
| async | 2.1 | 2.2 |
|
| async | 2.0 | 2.2 |
|
||||||
| base | 4.6 | 4.10 |
|
| base | 4.6 | 4.10 |
|
||||||
| binary | | 0.7 |
|
|
||||||
| bytestring | 0.10 | 0.11 |
|
| bytestring | 0.10 | 0.11 |
|
||||||
| containers | 0.5 | 0.6 |
|
| containers | 0.5 | 0.6 |
|
||||||
| deepseq | 1.3 | 1.5 |
|
| deepseq | 1.3 | 1.5 |
|
||||||
@@ -104,6 +103,7 @@ tracks Stack LTS resolver.
|
|||||||
| safe | 0.3 | 0.4 |
|
| safe | 0.3 | 0.4 |
|
||||||
| stm | 2.4 | 2.5 |
|
| stm | 2.4 | 2.5 |
|
||||||
| text | 1.2 | 1.3 |
|
| text | 1.2 | 1.3 |
|
||||||
|
| hashable | 1.2 | 1.3 |
|
||||||
| transformers | 0.4 | 0.6 |
|
| transformers | 0.4 | 0.6 |
|
||||||
|
|
||||||
FAQs
|
FAQs
|
||||||
|
|||||||
+3
-3
@@ -223,7 +223,7 @@ import Data.Void as X (
|
|||||||
import Control.Monad.State as X (
|
import Control.Monad.State as X (
|
||||||
MonadState
|
MonadState
|
||||||
, State
|
, State
|
||||||
, StateT
|
, StateT(StateT)
|
||||||
, put
|
, put
|
||||||
, get
|
, get
|
||||||
, gets
|
, gets
|
||||||
@@ -243,7 +243,7 @@ import Control.Monad.State as X (
|
|||||||
import Control.Monad.Reader as X (
|
import Control.Monad.Reader as X (
|
||||||
MonadReader
|
MonadReader
|
||||||
, Reader
|
, Reader
|
||||||
, ReaderT
|
, ReaderT(ReaderT)
|
||||||
, ask
|
, ask
|
||||||
, asks
|
, asks
|
||||||
, local
|
, local
|
||||||
@@ -255,7 +255,7 @@ import Control.Monad.Reader as X (
|
|||||||
import Control.Monad.Except as X (
|
import Control.Monad.Except as X (
|
||||||
MonadError
|
MonadError
|
||||||
, Except
|
, Except
|
||||||
, ExceptT
|
, ExceptT(ExceptT)
|
||||||
, throwError
|
, throwError
|
||||||
, catchError
|
, catchError
|
||||||
, runExcept
|
, runExcept
|
||||||
|
|||||||
Reference in New Issue
Block a user