summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2024-01-22 15:47:35 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2024-01-22 15:47:35 -0500
commit499f1295bede87b0d0b7379d1a6a6d8a2701204d (patch)
tree9400543db479e3ea2f29b462bb1c5f42cd7f8363
parent2031330db34b00c8cb4b95bb964e0b0ba582e5cd (diff)
downloadmako-upstream/rel_1_3_1.tar.gz
-rw-r--r--doc/build/changelog.rst11
-rw-r--r--doc/build/conf.py4
-rw-r--r--doc/build/unreleased/323.rst8
3 files changed, 12 insertions, 11 deletions
diff --git a/doc/build/changelog.rst b/doc/build/changelog.rst
index ea46e6c..35a7253 100644
--- a/doc/build/changelog.rst
+++ b/doc/build/changelog.rst
@@ -8,7 +8,16 @@ Changelog
.. changelog::
:version: 1.3.1
- :include_notes_from: unreleased
+ :released: Mon Jan 22 2024
+
+ .. change::
+ :tags: bug, lexer
+ :tickets: 323
+
+ Fixed parsing issue where attempting to render a single percent sign ``%``
+ using an escaped percent ``%%`` would not function correctly if the escaped
+ percent were not the first character on a line. Pull request courtesy Hai
+ Zhu.
.. changelog::
:version: 1.3.0
diff --git a/doc/build/conf.py b/doc/build/conf.py
index 6c75698..6cdfbbc 100644
--- a/doc/build/conf.py
+++ b/doc/build/conf.py
@@ -87,8 +87,8 @@ copyright = "the Mako authors and contributors"
# The short X.Y version.
version = mako.__version__
# The full version, including alpha/beta/rc tags.
-release = "1.3.0"
-release_date = "Wed Nov 8 2023"
+release = "1.3.1"
+release_date = "Mon Jan 22 2024"
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
# language = None
diff --git a/doc/build/unreleased/323.rst b/doc/build/unreleased/323.rst
deleted file mode 100644
index 8f23d8b..0000000
--- a/doc/build/unreleased/323.rst
+++ /dev/null
@@ -1,8 +0,0 @@
-.. change::
- :tags: bug, lexer
- :tickets: 323
-
- Fixed parsing issue where attempting to render a single percent sign ``%``
- using an escaped percent ``%%`` would not function correctly if the escaped
- percent were not the first character on a line. Pull request courtesy Hai
- Zhu.