diff --git a/README.markdown b/README.markdown
new file mode 100644
--- /dev/null
+++ b/README.markdown
@@ -0,0 +1,15 @@
+# Atlassian Connect Descriptor
+
+When writing an Atlassian Connect add-on in Haskell you will want to create an Atlassian Connect Descriptor. You can
+use this library to help you generate an Atlassian Connect Descriptor in a type safe manner and easily convert it to the
+required JSON using the Aeson library.
+
+You can [find this library on Hackage][4]; the documentation is quite extensive.
+
+This library is used in production by the [My Reminders][1] Atlassian Connect add-on; as you can view in our [source][2]
+and [live][3].
+
+ [1]: https://my-reminders.useast.atlassian.io/
+ [2]: https://bitbucket.org/atlassianlabs/my-reminders/src/9bb5e43a78ed3f8565fbbf64f24218e27f87c7af/src/AtlassianConnect.hs?at=master
+ [3]: https://my-reminders.useast.atlassian.io/atlassian-connect.json
+ [4]: http://hackage.haskell.org/package/atlassian-connect-descriptor
diff --git a/atlassian-connect-descriptor.cabal b/atlassian-connect-descriptor.cabal
--- a/atlassian-connect-descriptor.cabal
+++ b/atlassian-connect-descriptor.cabal
@@ -10,13 +10,14 @@
 -- 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
 
 -- A short (one-line) description of the package.
 synopsis:            Code that helps you create a valid Atlassian Connect Descriptor.
 
 -- A longer description of the package.
--- description:         
+description:         Allows you to generate an Atlassian Connect Descriptor in a typesafe manner and easily convert it
+                     it into JSON using the fantastic Aeson library.
 
 -- The license under which the package is released.
 license:             Apache-2.0
@@ -40,7 +41,7 @@
 
 -- Extra files to be distributed with the package, such as examples or a 
 -- README.
--- extra-source-files:  
+extra-source-files:  README.markdown
 
 -- Constraint on the version of Cabal needed to build this package.
 cabal-version:       >=1.20
@@ -68,7 +69,7 @@
   
   -- Other library packages from which modules are imported.
   build-depends:       base         >=4.6 && <5
-                       , aeson      >  0.7.0.3 && < 0.8
+                       , aeson      >  0.7.0.3 && < 0.9
                        , text       >= 0.11    && <= 1.2
                        , time-units == 1.*
                        , cases      == 0.1.*
