aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2019-07-20 12:27:47 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2019-07-20 12:27:47 -0400
commit0398aaf0f15cdbc70f0914eac130afe81257d76d (patch)
treec652fbd8e9dfd60a983a197baba21916d5d3d231
parent4d6158be06c4ca5b6f54ba2f6e12923b337c0aff (diff)
downloadexternal_python_mako-0398aaf0f15cdbc70f0914eac130afe81257d76d.tar.gz
external_python_mako-0398aaf0f15cdbc70f0914eac130afe81257d76d.tar.bz2
external_python_mako-0398aaf0f15cdbc70f0914eac130afe81257d76d.zip
- 1.0.14rel_1_0_14
-rw-r--r--doc/build/changelog.rst26
-rw-r--r--doc/build/conf.py2
-rw-r--r--doc/build/unreleased/n_page.rst13
-rw-r--r--doc/build/unreleased/uri_traceback.rst9
4 files changed, 26 insertions, 24 deletions
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
.. 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 @@ copyright = u'the Mako authors and contributors'
# 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.
-