From b0e8875fae006f6e8984c1fe5f82b5eed6d6d63c Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 30 Jan 2024 08:29:37 -0500 Subject: [PATCH] - 1.3.2 --- doc/build/changelog.rst | 13 ++++++++++++- doc/build/conf.py | 4 ++-- doc/build/unreleased/323.rst | 10 ---------- 3 files changed, 14 insertions(+), 13 deletions(-) delete mode 100644 doc/build/unreleased/323.rst diff --git a/doc/build/changelog.rst b/doc/build/changelog.rst index 0f1fec37..a4c8736b 100644 --- a/doc/build/changelog.rst +++ b/doc/build/changelog.rst @@ -8,7 +8,18 @@ Changelog .. changelog:: :version: 1.3.2 - :include_notes_from: unreleased + :released: Tue Jan 30 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. Note that this is a revised + version of a similar change made in Mako 1.3.1 which caused unexpected + parsing regressions, resulting in the release being yanked. + Pull request courtesy Hai Zhu. .. changelog:: :version: 1.3.1 diff --git a/doc/build/conf.py b/doc/build/conf.py index 6cdfbbce..2d659885 100644 --- a/doc/build/conf.py +++ b/doc/build/conf.py @@ -87,8 +87,8 @@ # The short X.Y version. version = mako.__version__ # The full version, including alpha/beta/rc tags. -release = "1.3.1" -release_date = "Mon Jan 22 2024" +release = "1.3.2" +release_date = "Tue Jan 30 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 7df0a2b9..00000000 --- a/doc/build/unreleased/323.rst +++ /dev/null @@ -1,10 +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. Note that this is a revised - version of a similar change made in Mako 1.3.1 which caused unexpected - parsing regressions, resulting in the release being yanked. - Pull request courtesy Hai Zhu.