diff --git a/Data/ByteString/Streaming/Char8.hs b/Data/ByteString/Streaming/Char8.hs
--- a/Data/ByteString/Streaming/Char8.hs
+++ b/Data/ByteString/Streaming/Char8.hs
@@ -508,7 +508,7 @@
 
 -- | 
 unlinesIndividual :: Monad m => Stream (Of B.ByteString) m r -> ByteString m r 
-unlinesIndividual bss =  R.concat $ for bss (\bs -> layer $ R.chunk bs >> singleton '\n')
+unlinesIndividual bss =  R.concat $ for bss (\bs -> elevate $ R.chunk bs >> singleton '\n')
 
 -- | 'words' breaks a byte stream up into a succession of byte streams 
 --   corresponding to words, breaking Chars representing white space. This is 
@@ -562,7 +562,7 @@
 
 -}
 unwordsIndividual :: Monad m => Stream (Of B.ByteString) m r -> ByteString m r 
-unwordsIndividual bss =  R.concat $ for bss (\bs -> layer $ R.chunk bs >> singleton ' ')
+unwordsIndividual bss =  R.concat $ for bss (\bs -> elevate $ R.chunk bs >> singleton ' ')
 
 
 
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2015, michaelt
+Copyright (c) 2015, Michael Thompson
 
 All rights reserved.
 
diff --git a/streaming-bytestring.cabal b/streaming-bytestring.cabal
--- a/streaming-bytestring.cabal
+++ b/streaming-bytestring.cabal
@@ -1,5 +1,5 @@
 name:                streaming-bytestring
-version:             0.1.0.8
+version:             0.1.1.0
 synopsis:            effectful byte steams, or: bytestring io done right.
 
 description:         This is an implementation of effectful, memory-constrained 
@@ -189,7 +189,7 @@
                      , mtl >=2.1 && <2.3
                      , mmorph >=1.0 && <1.2
                      , transformers >=0.3 && <0.5
-                     , streaming > 0.1.0.15 && < 0.1.1
+                     , streaming > 0.1.0.20 && < 0.1.1.2
   if impl(ghc < 7.8) 
     build-depends:
                      bytestring < 0.10.4.0
