diff --git a/ChangeLog.md b/ChangeLog.md
new file mode 100644
--- /dev/null
+++ b/ChangeLog.md
@@ -0,0 +1,1 @@
+No changes logged yet
diff --git a/README.md b/README.md
new file mode 100644
--- /dev/null
+++ b/README.md
@@ -0,0 +1,16 @@
+## yesod-eventsource
+
+It's easy to send an event from an HTTP client to a server:
+just send an HTTP request.  However, sending events from the
+server to the client requires more sophisticated approaches.
+[Server-sent events](http://www.w3.org/TR/eventsource/) are a
+standardized way of pushing events from the server to the
+client.
+
+This package allows your Yesod application to easily send
+server-sent events.  On the client side, you may use the
+`EventSource` JavaScript object on browsers that support it
+(https://developer.mozilla.org/en-US/docs/Server-sent_events/EventSource)
+or a polyfill for browsers that don't (we support Remy's
+polyfill out-of-the-box, although that requires you to
+explicitly support it).
diff --git a/yesod-eventsource.cabal b/yesod-eventsource.cabal
--- a/yesod-eventsource.cabal
+++ b/yesod-eventsource.cabal
@@ -1,5 +1,5 @@
 name:            yesod-eventsource
-version:         1.4.0
+version:         1.4.0.1
 license:         MIT
 license-file:    LICENSE
 author:          Felipe Lessa <felipe.lessa@gmail.com>
@@ -10,21 +10,8 @@
 cabal-version:   >= 1.6
 build-type:      Simple
 homepage:        http://www.yesodweb.com/
-description:
-  It's easy to send an event from an HTTP client to a server:
-  just send an HTTP request.  However, sending events from the
-  server to the client requires more sophisticated approaches.
-  Server-sent events (<http://www.w3.org/TR/eventsource/>) are a
-  standardized way of pushing events from the server to the
-  client.
-  .
-  This package allows your Yesod application to easily send
-  server-sent events.  On the client side, you may use the
-  @EventSource@ JavaScript object on browsers that support it
-  (<https://developer.mozilla.org/en-US/docs/Server-sent_events/EventSource>)
-  or a polyfill for browsers that don't (we support Remy's
-  polyfill out-of-the-box, although that requires you to
-  explicitly support it).
+description:     API docs and the README are available at <http://www.stackage.org/package/yesod-eventsource>
+extra-source-files: README.md ChangeLog.md
 
 library
     build-depends:   base                  >= 4        && < 5
