diff --git a/CHANGES.rst b/CHANGES.rst
new file mode 100644
--- /dev/null
+++ b/CHANGES.rst
@@ -0,0 +1,9 @@
+Release 0.7.1
+--------------------------------------------------
+
+Fixed JavaScript syntax error in hsbook.js
+
+Release 0.7
+--------------------------------------------------
+
+Initial public release
diff --git a/TODO.rst b/TODO.rst
--- a/TODO.rst
+++ b/TODO.rst
@@ -18,12 +18,16 @@
   * Have the server add the ``<script>`` and ``<link>`` tags to
     documents in the content directory automatically
 
-  * Add a PostgreSQL storage backend
+  * Data storage
 
-  * Add a MySQL storage backend
+    * Add a PostgreSQL storage backend
 
-  * Make building SQLite support optional (so you do not need to build
-    it unless you are using that backend)
+    * Add a MySQL storage backend
+
+    * Make building SQLite support optional (so you do not need to build
+      it unless you are using that backend)
+
+    * Make the flat-file backend reliable
 
   * Add support for handing proxy host headers so that URLs get
     generated properly (e.g. X-Forwarded-Host)
diff --git a/doc-review.cabal b/doc-review.cabal
--- a/doc-review.cabal
+++ b/doc-review.cabal
@@ -1,5 +1,5 @@
 Name:                doc-review
-Version:             0.7
+Version:             0.7.1
 Synopsis:            Document review Web application, like http://book.realworldhaskell.org/
 
 Description: A standalone Web application that provides for
@@ -27,6 +27,7 @@
       static/support/icons/*.gif
 
 extra-source-files:
+      CHANGES.rst,
       README.rst,
       API.rst,
       TODO.rst
diff --git a/static/support/javascript/hsbook.js b/static/support/javascript/hsbook.js
--- a/static/support/javascript/hsbook.js
+++ b/static/support/javascript/hsbook.js
@@ -112,7 +112,7 @@
 	    chapid + "/count/", function(data) {
     $.each(data, function(id, item) {
       $("#comments_" + qid(id) + " span.commenttoggle").replaceWith(
-          commentLink(id, item);
+          commentLink(id, item)
       );
     });
     $("span.commenttoggle").each(function() {
