rio 0.1.7.0 → 0.1.8.0
raw patch · 3 files changed
+9/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ RIO.State: gets :: MonadState s m => (s -> a) -> m a
+ RIO.State: modify :: MonadState s m => (s -> s) -> m ()
+ RIO.State: modify' :: MonadState s m => (s -> s) -> m ()
Files
- ChangeLog.md +4/−0
- rio.cabal +2/−2
- src/RIO/State.hs +3/−0
ChangeLog.md view
@@ -1,5 +1,9 @@ # Changelog for rio +## 0.1.8.0++* Re-export `Control.Monad.State.modify`, `Control.Monad.State.modify'` and `Control.Monad.State.gets` in `RIO.State`+ ## 0.1.7.0 * Addition of `textDisplay` to `Display` class.
rio.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: b91cb0c2c4bba78233563166dd6cd73b36b53c63115f7eab1f663f63e211f482+-- hash: 03c9a11fb87d70a75dd9c78b679c652518ced81d54220e49b2e41637a463958b name: rio-version: 0.1.7.0+version: 0.1.8.0 synopsis: A standard library for Haskell description: See README and Haddocks at <https://www.stackage.org/package/rio> category: Control
src/RIO/State.hs view
@@ -4,6 +4,9 @@ module RIO.State ( Control.Monad.State.MonadState (..)+ , Control.Monad.State.gets+ , Control.Monad.State.modify+ , Control.Monad.State.modify' ) where import qualified Control.Monad.State