diff --git a/CHANGES b/CHANGES
new file mode 100644
--- /dev/null
+++ b/CHANGES
@@ -0,0 +1,25 @@
+* 3000.9.1 (4 May 2013)
+
+  - Expose Network.XmlRpc.DTD_XMLRPC from the library
+
+    The point is to allow converting to XML using functions from
+
+      http://hackage.haskell.org/packages/archive/HaXml/1.23.3/doc/html/Text-XML-HaXml-XmlContent.html
+
+    which allows for custom serialization of the XML to deal with
+    endpoints that don't parse XML correctly.
+
+* 3000.9.0.1 (7 July 2012)
+
+  - Make everything in examples/ directory compile again
+
+* 3000.9 (7 July 2012)
+
+  - Switch from dataenc to base64-bytestring for base64 encoding,
+    resulting in dramatically improved efficiency
+
+  - Change the argument type of ValueBase64 constructor from String to
+    ByteString
+
+  - bump HaXml dependency upper bound to allow HaXml 1.23.*
+
diff --git a/haxr.cabal b/haxr.cabal
--- a/haxr.cabal
+++ b/haxr.cabal
@@ -1,6 +1,6 @@
 Name: haxr
-Version: 3000.9.0.1
-Cabal-version: >=1.6
+Version: 3000.9.1
+Cabal-version: >=1.10
 Build-type: Simple
 Copyright: Bjorn Bringert, 2003-2006
 License: BSD3
@@ -15,11 +15,13 @@
         client and server applications in Haskell.
 
 Extra-Source-Files:
+        CHANGES
         examples/make-stubs.hs        examples/parse_response.hs    examples/Person.hs
         examples/PersonTH.hs          examples/person_client.hs     examples/person_server.hs
         examples/raw_call.hs          examples/simple_client.hs     examples/simple_server.hs
         examples/test_client.hs       examples/test_server.hs       examples/time-xmlrpc-com.hs
         examples/validate.hs          examples/Makefile
+Bug-reports: http://code.google.com/p/byorgey/issues/list?q=Project:haxr
 
 Source-repository head
   type:     darcs
@@ -46,8 +48,10 @@
         Network.XmlRpc.Internals,
         Network.XmlRpc.Introspect,
         Network.XmlRpc.THDeriveXmlRpcType,
-        Network.XmlRpc.Pretty
-  Other-Modules:
-        Network.XmlRpc.Base64,
+        Network.XmlRpc.Pretty,
         Network.XmlRpc.DTD_XMLRPC
-  Extensions: OverlappingInstances, TypeSynonymInstances, FlexibleInstances, TemplateHaskell
+  Other-Modules:
+        Network.XmlRpc.Base64
+  Default-extensions: OverlappingInstances, TypeSynonymInstances, FlexibleInstances
+  Other-extensions: OverloadedStrings, GeneralizedNewtypeDeriving, TemplateHaskell
+  Default-language: Haskell2010
