diff --git a/hspec/Main.hs b/hspec/Main.hs
--- a/hspec/Main.hs
+++ b/hspec/Main.hs
@@ -13,10 +13,10 @@
 
 main = 
   hspec $ do
-    context "utf8ByteString" $ do
+    context "decodeUTF8" $ do
       it "back and forth" $
         property $ \text ->
-          TE.encodeUtf8 text & streamByteString 3 & utf8ByteString & L.toList & runIdentity & mconcat &
+          TE.encodeUtf8 text & streamByteString 3 & decodeUTF8 & L.toList & runIdentity & mconcat &
           (==) text
 
 streamByteString :: Monad m => Int -> ByteString -> L.ListT m ByteString
diff --git a/list-t-text.cabal b/list-t-text.cabal
--- a/list-t-text.cabal
+++ b/list-t-text.cabal
@@ -1,7 +1,7 @@
 name:
   list-t-text
 version:
-  0.2.0.0
+  0.2.0.1
 synopsis:
   A streaming text codec
 category:
