diff --git a/Data/Aeson/Encode.hs b/Data/Aeson/Encode.hs
--- a/Data/Aeson/Encode.hs
+++ b/Data/Aeson/Encode.hs
@@ -20,6 +20,7 @@
     ( encode
 
     -- * Encoding to Builders
+    , encodeToBuilder
     , encodeToByteStringBuilder
     , encodeToTextBuilder
 
@@ -37,10 +38,11 @@
 import qualified Data.Text as T
 import qualified Data.Vector as V
 
-import Data.Aeson.Encode.ByteString (encode, encodeToByteStringBuilder)
+import Data.Aeson.Encode.ByteString (encode, encodeToBuilder,
+                                     encodeToByteStringBuilder)
 
--- | Encode a JSON 'Value' to a 'Builder', which can be embedded efficiently
--- in a text-based protocol.
+-- | Encode a JSON 'Value' to a "Data.Text" 'Builder', which can be
+-- embedded efficiently in a text-based protocol.
 encodeToTextBuilder :: Value -> Builder
 encodeToTextBuilder =
     go
diff --git a/aeson.cabal b/aeson.cabal
--- a/aeson.cabal
+++ b/aeson.cabal
@@ -1,5 +1,5 @@
 name:            aeson
-version:         0.9.0.0
+version:         0.9.0.1
 license:         BSD3
 license-file:    LICENSE
 category:        Text, Web, JSON
diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,7 @@
+0.9.0.1
+
+* A stray export of encodeToBuilder got away!
+
 0.9.0.0
 
 * The json and json' parsers are now synonyms for value and value', in
