diff --git a/Data/Conduit.hs b/Data/Conduit.hs
--- a/Data/Conduit.hs
+++ b/Data/Conduit.hs
@@ -52,6 +52,7 @@
     , ($$+-)
     , ($=+)
     , unwrapResumable
+    , closeResumableSource
 
       -- ** For @Conduit@s
     , ResumableConduit
@@ -331,6 +332,15 @@
 -- Since 1.0.16
 ($=+) :: Monad m => ResumableSource m a -> Conduit a m b -> ResumableSource m b
 ResumableSource src final $=+ sink = ResumableSource (src $= sink) final
+
+-- | Execute the finalizer associated with a @ResumableSource@, rendering the
+-- @ResumableSource@ invalid for further use.
+--
+-- This is just a more explicit version of @$$+- return ()@.
+--
+-- Since 1.1.3
+closeResumableSource :: Monad m => ResumableSource m a -> m ()
+closeResumableSource = ($$+- return ())
 
 -- | Provide for a stream of data that can be flushed.
 --
diff --git a/conduit.cabal b/conduit.cabal
--- a/conduit.cabal
+++ b/conduit.cabal
@@ -1,5 +1,5 @@
 Name:                conduit
-Version:             1.1.2.1
+Version:             1.1.3
 Synopsis:            Streaming data processing library.
 Description:
     @conduit@ is a solution to the streaming data problem, allowing for production, transformation, and consumption of streams of data in constant memory. It is an alternative to lazy I\/O which guarantees deterministic resource handling, and fits in the same general solution space as @enumerator@\/@iteratee@ and @pipes@. For a tutorial, please visit <https://haskell.fpcomplete.com/user/snoyberg/library-documentation/conduit-overview>.
