- 1.0.13
diff --git a/doc/build/changelog.rst b/doc/build/changelog.rst
index 6990d90..e771335 100644
--- a/doc/build/changelog.rst
+++ b/doc/build/changelog.rst
@@ -7,7 +7,18 @@
 
 .. changelog::
     :version: 1.0.13
-    :include_notes_from: unreleased
+    :released: Mon Jul 1 2019
+
+    .. change::
+        :tags: bug, exceptions
+
+        Improved the line-number tracking for source lines inside of Python  ``<%
+        ... %>`` blocks, such that text- and HTML-formatted exception traces such
+        as that of  :func:`.html_error_template` now report the correct source line
+        inside the block, rather than the first line of the block itself.
+        Exceptions in ``<%! ... %>`` blocks which get raised while loading the
+        module are still not reported correctly, as these are handled before the
+        Mako code is generated.  Pull request courtesy Martin von Gagern.
 
 .. changelog::
     :version: 1.0.12
diff --git a/doc/build/conf.py b/doc/build/conf.py
index b069052..1c1832b 100644
--- a/doc/build/conf.py
+++ b/doc/build/conf.py
@@ -70,7 +70,7 @@
 # The short X.Y version.
 version = mako.__version__
 # The full version, including alpha/beta/rc tags.
-release = "1.0.12"
+release = "1.0.13"
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
diff --git a/doc/build/unreleased/codeerr.rst b/doc/build/unreleased/codeerr.rst
deleted file mode 100644
index 2497896..0000000
--- a/doc/build/unreleased/codeerr.rst
+++ /dev/null
@@ -1,10 +0,0 @@
-.. change::
-    :tags: bug, exceptions
-
-    Improved the line-number tracking for source lines inside of Python  ``<%
-    ... %>`` blocks, such that text- and HTML-formatted exception traces such
-    as that of  :func:`.html_error_template` now report the correct source line
-    inside the block, rather than the first line of the block itself.
-    Exceptions in ``<%! ... %>`` blocks which get raised while loading the
-    module are still not reported correctly, as these are handled before the
-    Mako code is generated.  Pull request courtesy Martin von Gagern.