diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/Control/Applicative/MultiExcept.hs b/Control/Applicative/MultiExcept.hs
--- a/Control/Applicative/MultiExcept.hs
+++ b/Control/Applicative/MultiExcept.hs
@@ -9,9 +9,10 @@
 
 module Control.Applicative.MultiExcept
   ( MultiExcept
+  , fromEither
   , runMultiExcept
-  , throwError
   , succeed
+  , throwError
   ) where
 
 import Data.Functor.Alt
diff --git a/multi-except.cabal b/multi-except.cabal
--- a/multi-except.cabal
+++ b/multi-except.cabal
@@ -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
