packages feed

multi-except 0.1.2.0 → 0.1.3.0

raw patch · 3 files changed

+7/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Control.Applicative.MultiExcept: fromEither :: Either err a -> MultiExcept err a

Files

CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for multi-except +## 0.1.3.0 -- 2021-05-26++* Exposed fromEither+ ## 0.1.2.0 -- 2021-05-26  * Added fromEither
Control/Applicative/MultiExcept.hs view
@@ -9,9 +9,10 @@  module Control.Applicative.MultiExcept   ( MultiExcept+  , fromEither   , runMultiExcept-  , throwError   , succeed+  , throwError   ) where  import Data.Functor.Alt
multi-except.cabal view
@@ -1,7 +1,7 @@ cabal-version:       >=1.10  name:                multi-except-version:             0.1.2.0+version:             0.1.3.0 synopsis:            Multiple Exceptions description:         Exception type that supports reporting multiple exceptions license:             MIT