aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2019-07-01 15:24:28 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2019-07-01 15:24:28 -0400
commit5b3a4a4aa981790935e60b99ef6f1ca07fdb302f (patch)
tree11ef280b24f267f13f89bd0b3d4e19bb790565ec
parent06d67cf4677e10e5c42581c02f293101e1c39a3a (diff)
downloadexternal_python_mako-5b3a4a4aa981790935e60b99ef6f1ca07fdb302f.tar.gz
external_python_mako-5b3a4a4aa981790935e60b99ef6f1ca07fdb302f.tar.bz2
external_python_mako-5b3a4a4aa981790935e60b99ef6f1ca07fdb302f.zip
- 1.0.13rel_1_0_13
-rw-r--r--doc/build/changelog.rst13
-rw-r--r--doc/build/conf.py2
-rw-r--r--doc/build/unreleased/codeerr.rst10
3 files changed, 13 insertions, 12 deletions
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
.. 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 @@ 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.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.