From 366d26f6e75a0a5ca6d14583fff740d462bd38c3 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 21 Oct 2024 17:52:21 -0400 Subject: [PATCH] - 1.3.6 --- doc/build/changelog.rst | 11 ++++++++++- doc/build/conf.py | 4 ++-- doc/build/unreleased/412.rst | 8 -------- 3 files changed, 12 insertions(+), 11 deletions(-) delete mode 100644 doc/build/unreleased/412.rst diff --git a/doc/build/changelog.rst b/doc/build/changelog.rst index 72e9cee4..289f64fe 100644 --- a/doc/build/changelog.rst +++ b/doc/build/changelog.rst @@ -8,7 +8,16 @@ Changelog .. changelog:: :version: 1.3.6 - :include_notes_from: unreleased + :released: Mon Oct 21 2024 + + .. change:: + :tags: bug, lexer + :tickets: 412 + + Fixed long standing bug where the sequence ``<&`` would be misinterpreted + by the lexer. It's not clear why the ampersand character was part of the + characters being consumed here and it may have been an inadvertent bit of + code from one of Mako's predecessor languages. .. changelog:: :version: 1.3.5 diff --git a/doc/build/conf.py b/doc/build/conf.py index 57be0324..9d80a19a 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.5" -release_date = "Tue May 14 2024" +release = "1.3.6" +release_date = "Mon Oct 21 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/412.rst b/doc/build/unreleased/412.rst deleted file mode 100644 index 3ee9bb62..00000000 --- a/doc/build/unreleased/412.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. change:: - :tags: bug, lexer - :tickets: 412 - - Fixed long standing bug where the sequence ``<&`` would be misinterpreted - by the lexer. It's not clear why the ampersand character was part of the - characters being consumed here and it may have been an inadvertent bit of - code from one of Mako's predecessor languages.