diff --git a/effin.cabal b/effin.cabal
--- a/effin.cabal
+++ b/effin.cabal
@@ -1,5 +1,5 @@
 name:                effin
-version:             0.1.0.1
+version:             0.1.1.0
 synopsis:            A Typeable-free implementation of extensible effects
 homepage:            https://github.com/YellPika/effin
 license:             BSD3
@@ -26,7 +26,8 @@
   >     $ eliminate (\(Exception e) -> return (Left e))
   >     $ defaultRelay
   .
-  Compare this to the corresponding code in extensible-effects:
+  Compare this to the corresponding code in extensible-effects
+  (<http://hackage.haskell.org/package/extensible-effects>):
   .
   > runExc :: Typeable e => Eff (Exc e :> r) a -> Eff r (Either e a)
   > runExc = loop . admin
diff --git a/src/Control/Effect/Lift.hs b/src/Control/Effect/Lift.hs
--- a/src/Control/Effect/Lift.hs
+++ b/src/Control/Effect/Lift.hs
@@ -12,7 +12,7 @@
 #endif
 
 module Control.Effect.Lift (
-    Lift, runLift, lift
+    EffectLift, Lift, runLift, lift
 ) where
 
 import Control.Monad.Effect
