diff --git a/Blaze/ByteString/Builder/Char/Utf8.hs b/Blaze/ByteString/Builder/Char/Utf8.hs
--- a/Blaze/ByteString/Builder/Char/Utf8.hs
+++ b/Blaze/ByteString/Builder/Char/Utf8.hs
@@ -111,19 +111,12 @@
 
 -- | /O(n)/. Serialize a strict Unicode 'TS.Text' value using the UTF-8 encoding.
 --
--- Note that this function is currently faster than 'TS.encodeUtf8' provided by
--- "Data.Text.Encoding". Moreover, 'fromText' is also lazy, while 'TL.encodeUtf8'
--- is strict.
---
 fromText :: TS.Text -> Builder
 fromText = fromString . TS.unpack
 {-# INLINE fromText #-}
 
 
 -- | /O(n)/. Serialize a lazy Unicode 'TL.Text' value using the UTF-8 encoding.
---
--- Note that this function is currently faster than 'TL.encodeUtf8' provided by
--- "Data.Text.Lazy.Encoding".
 --
 fromLazyText :: TL.Text -> Builder
 fromLazyText = fromString . TL.unpack
diff --git a/CHANGES b/CHANGES
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,15 @@
+* 0.3.0.1
+
+  - Remove comparison to the 'text' library encoding functions of
+    'Blaze.Builder.Char.Utf8.fromText' and
+    'Blaze.Builder.Char.Utf8.fromLazyText'. Bryan O'Sullivan reported that on
+    his 64-bit system with GHC 7.0.3 the 'text' library is 5x faster than the
+    'blaze-builder' library.
+
+* 0.3.0.0
+
+  - Renamings in internal modules: WriteIO -> Poke and associated functions.
+
 * 0.2.1.4 
    
   - Fixed bug: appending to 'chunkedTransferEncoding somebuilder' also encoded
diff --git a/blaze-builder.cabal b/blaze-builder.cabal
--- a/blaze-builder.cabal
+++ b/blaze-builder.cabal
@@ -1,5 +1,5 @@
 Name:                blaze-builder
-Version:             0.3.0.0
+Version:             0.3.0.1
 Synopsis:            Efficient buffered output.
 
 Description:         
