diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,9 @@
 # Revision history for bytestring-xml
 
-## 0.1.0.0  -- YYYY-mm-dd
+## 0.1.0.0  -- 2017-01-09
 
 * First version. Released on an unsuspecting world.
+
+## 0.1.0.1 -- 2017-01-09
+
+* Included README.md in the Cabal package
diff --git a/README.md b/README.md
new file mode 100644
--- /dev/null
+++ b/README.md
@@ -0,0 +1,10 @@
+# tinyXml [![Hackage version](https://img.shields.io/hackage/v/tinyXml.svg?label=Hackage)](https://hackage.haskell.org/package/tinyXml) [![Stackage version](https://www.stackage.org/package/tinyXml/badge/lts?label=Stackage)](https://www.stackage.org/package/tinyXml) [![Linux Build Status](https://img.shields.io/travis/pepeiborra/tinyXml.svg?label=Linux%20build)](https://travis-ci.org/pepeiborra/tinyXml) 
+
+TinyXml is a DOM style parsing library for a subset of XML. It is intended to be fast and memory efficient, but it currently has no support for: 
+- entities, 
+- CDATA sections, nor 
+- namespaces. 
+
+TinyXml is a reimplementation of [Hexml] (http://neilmitchell.blogspot.com/2016/12/fuzz-testing-hexml-with-afl.html) without the cbits, attaining mostly comparable performance in pure (but hardly idiomatic) Haskell.  
+
+TinyXml is alpha quality software and not currently used in production anywhere.
diff --git a/tinyXml.cabal b/tinyXml.cabal
--- a/tinyXml.cabal
+++ b/tinyXml.cabal
@@ -6,7 +6,7 @@
 -- PVP summary:      +-+------- breaking API changes
 --                   | | +----- non-breaking API additions
 --                   | | | +--- code changes with no API change
-version:             0.1.0.0
+version:             0.1.0.1
 
 synopsis:            A fast DOM parser for a subset of XML
 
@@ -24,7 +24,7 @@
 
 build-type:          Simple
 
-extra-source-files:  ChangeLog.md, xml/benchmark.xml.bz2, xml/mail.xml.bz2
+extra-source-files:  README.md, ChangeLog.md, xml/benchmark.xml.bz2, xml/mail.xml.bz2
 extra-tmp-files:     xml/benchmark.xml, xml/mail.xml, xml/benchmark.xml.reprint, xml/mail.xml.reprint
 
 cabal-version:       >=1.22
