rio 0.1.9.1 → 0.1.9.2
raw patch · 3 files changed
+7/−7 lines, 3 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- RIO.Prelude: fail :: MonadFail m => String -> m a
+ RIO.Prelude: fail :: Monad m => String -> m a
Files
- ChangeLog.md +4/−0
- rio.cabal +2/−2
- src/RIO/Prelude.hs +1/−5
ChangeLog.md view
@@ -1,5 +1,9 @@ # Changelog for rio +## 0.1.9.2++* Bring back re-export of `Monad.fail` from `RIO.Prelude`.+ ## 0.1.9.1 * Remove accidental reexport of `Control.Applicative.empty` introduced in the previous release.
rio.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: e4d808363ae67f8f6644747633818294f287d1c9e7cd539b5b71c90b74034aed+-- hash: c33027526ffc54db8cec5929c470c83ccf256752d6502bae18316d3ccd807bf9 name: rio-version: 0.1.9.1+version: 0.1.9.2 synopsis: A standard library for Haskell description: See README and Haddocks at <https://www.stackage.org/package/rio> category: Control
src/RIO/Prelude.hs view
@@ -201,6 +201,7 @@ -- | Re-exported from "Control.Monad": , Control.Monad.return , Control.Monad.join+ , Control.Monad.fail , (Control.Monad.>>=) , (Control.Monad.>>) , (Control.Monad.=<<)@@ -221,10 +222,6 @@ -- , Data.Foldable.foldlM -- , Data.Foldable.foldrM - -- ** @MonadFail@- -- | Re-exported from "Control.Monad.Fail":- , Control.Monad.Fail.fail- -- * @Foldable@ -- | Re-exported from "Data.Foldable": , Data.Foldable.foldr@@ -413,7 +410,6 @@ import qualified Control.Applicative import qualified Control.Monad-import qualified Control.Monad.Fail import qualified Data.Foldable