diff --git a/Web/Twitter/Conduit/Stream.hs b/Web/Twitter/Conduit/Stream.hs
--- a/Web/Twitter/Conduit/Stream.hs
+++ b/Web/Twitter/Conduit/Stream.hs
@@ -38,13 +38,17 @@
 import Control.Monad.IO.Class
 import Data.Aeson
 
+#if MIN_VERSION_conduit(1,0,16)
 ($=+) :: MonadIO m
       => CI.ResumableSource m a
       -> CI.Conduit a m o
       -> m (CI.ResumableSource m o)
+($=+) = (return .) . (C.$=+)
+#else
 rsrc $=+ cndt = do
     (src, finalizer) <- C.unwrapResumable rsrc
     return $ CI.ResumableSource (src C.$= cndt) finalizer
+#endif
 
 stream :: (TwitterBaseM m, FromJSON responseType)
        => APIRequest apiName responseType
diff --git a/twitter-conduit.cabal b/twitter-conduit.cabal
--- a/twitter-conduit.cabal
+++ b/twitter-conduit.cabal
@@ -1,5 +1,5 @@
 name:              twitter-conduit
-version:           0.0.5.7
+version:           0.0.5.8
 license:           BSD3
 license-file:      LICENSE
 author:            HATTORI Hiroki, Hideyuki Tanaka, Takahiro HIMURA
