- 1.0.14
diff --git a/doc/build/changelog.rst b/doc/build/changelog.rst
index 90b194a..acbd7bd 100644
--- a/doc/build/changelog.rst
+++ b/doc/build/changelog.rst
@@ -7,7 +7,31 @@
 
 .. changelog::
     :version: 1.0.14
-    :include_notes_from: unreleased
+    :released: Sat Jul 20 2019
+
+    .. change::
+        :tags: feature, template
+
+        The ``n`` filter is now supported in the ``<%page>`` tag.  This allows a
+        template to omit the default expression filters throughout a whole
+        template, for those cases where a template-wide filter needs to have
+        default filtering disabled.  Pull request courtesy Martin von Gagern.
+
+        .. seealso::
+
+            :ref:`expression_filtering_nfilter`
+
+
+
+    .. change::
+        :tags: bug, exceptions
+
+        Fixed issue where the correct file URI would not be shown in the
+        template-formatted exception traceback if the template filename were not
+        known.  Additionally fixes an issue where stale filenames would be
+        displayed if a stack trace alternated between different templates.  Pull
+        request courtesy Martin von Gagern.
+
 
 .. changelog::
     :version: 1.0.13
diff --git a/doc/build/conf.py b/doc/build/conf.py
index 1c1832b..4e3e2bb 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.13"
+release = "1.0.14"
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
diff --git a/doc/build/unreleased/n_page.rst b/doc/build/unreleased/n_page.rst
deleted file mode 100644
index 958a5ba..0000000
--- a/doc/build/unreleased/n_page.rst
+++ /dev/null
@@ -1,13 +0,0 @@
-.. change::
-    :tags: feature, template
-
-    The ``n`` filter is now supported in the ``<%page>`` tag.  This allows a
-    template to omit the default expression filters throughout a whole
-    template, for those cases where a template-wide filter needs to have
-    default filtering disabled.  Pull request courtesy Martin von Gagern.
-
-    .. seealso::
-
-        :ref:`expression_filtering_nfilter`
-
-
diff --git a/doc/build/unreleased/uri_traceback.rst b/doc/build/unreleased/uri_traceback.rst
deleted file mode 100644
index 43787b9..0000000
--- a/doc/build/unreleased/uri_traceback.rst
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change::
-    :tags: bug, exceptions
-
-    Fixed issue where the correct file URI would not be shown in the
-    template-formatted exception traceback if the template filename were not
-    known.  Additionally fixes an issue where stale filenames would be
-    displayed if a stack trace alternated between different templates.  Pull
-    request courtesy Martin von Gagern.
-