diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,9 @@
 # Revision history for streaming-with
 
+## 0.2.2.0 -- 2018-05-23
+
+* Actually export `liftThrow` from within `Streaming.With.Lifted`.
+
 ## 0.2.1.1 -- 2018-03-23
 
 * Bump exceptions dependency
diff --git a/src/Streaming/With.hs b/src/Streaming/With.hs
--- a/src/Streaming/With.hs
+++ b/src/Streaming/With.hs
@@ -72,8 +72,8 @@
 
 --------------------------------------------------------------------------------
 
--- | /This is 'T.withSystemTempFile' from the @temporary@ package with
---   the continuation re-structured to only take one argument./
+-- | /This is 'T.withSystemTempFile' from the @temporary@ package/
+--   /with the continuation re-structured to only take one argument./
 --
 --   Create and use a temporary file in the system standard temporary
 --   directory.
@@ -89,8 +89,8 @@
                    -> m r
 withSystemTempFile template = T.withSystemTempFile template . curry
 
--- | /This is 'T.withTempFile' from the @temporary@ package with
---   the continuation re-structured to only take one argument./
+-- | /This is 'T.withTempFile' from the @temporary@ package with the/
+--   /continuation re-structured to only take one argument./
 --
 --   Use a temporary filename that doesn't already exist.
 --
diff --git a/src/Streaming/With/Lifted.hs b/src/Streaming/With/Lifted.hs
--- a/src/Streaming/With/Lifted.hs
+++ b/src/Streaming/With/Lifted.hs
@@ -40,6 +40,7 @@
   , RunWithable (..)
   , within
   , liftActionIO
+  , liftThrow
     -- * File-handling
   , withFile
   , withBinaryFile
@@ -153,7 +154,7 @@
 --
 --   @liftThrow = liftAction . throwM@.
 --
---   @since 0.2.1.0
+--   @since 0.2.2.0
 liftThrow :: (Withable w, Exception e) => e -> w a
 liftThrow = liftAction . throwM
 
diff --git a/streaming-with.cabal b/streaming-with.cabal
--- a/streaming-with.cabal
+++ b/streaming-with.cabal
@@ -1,5 +1,5 @@
 name:                streaming-with
-version:             0.2.1.1
+version:             0.2.2.0
 synopsis:            with/bracket-style idioms for use with streaming
 description:
     This package provides the foundations for a continuation-based
@@ -13,7 +13,9 @@
 build-type:          Simple
 extra-source-files:  ChangeLog.md, README.md
 cabal-version:       >=1.10
-tested-with:         GHC == 7.10.2, GHC == 8.0.2, GHC == 8.1.*
+tested-with:         GHC == 7.10.2, GHC == 8.0.2, GHC == 8.2.2,
+                     -- GHC == 8.4.1,
+                     GHC == 8.5.*
 
 source-repository head
   type:     git
