summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/build/changelog.rst12
-rw-r--r--doc/build/conf.py4
-rw-r--r--doc/build/unreleased/366.rst9
3 files changed, 13 insertions, 12 deletions
diff --git a/doc/build/changelog.rst b/doc/build/changelog.rst
index 8d29ff5..66f458c 100644
--- a/doc/build/changelog.rst
+++ b/doc/build/changelog.rst
@@ -8,7 +8,17 @@ Changelog
.. changelog::
:version: 1.2.2
- :include_notes_from: unreleased
+ :released: Mon Aug 29 2022
+
+ .. change::
+ :tags: bug, lexer
+ :tickets: 366
+
+ Fixed issue in lexer where the regexp used to match tags would not
+ correctly interpret quoted sections individually. While this parsing issue
+ still produced the same expected tag structure later on, the mis-handling
+ of quoted sections was also subject to a regexp crash if a tag had a large
+ number of quotes within its quoted sections.
.. changelog::
:version: 1.2.1
diff --git a/doc/build/conf.py b/doc/build/conf.py
index 4ea457a..4cc9f33 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.2.1"
-release_date = "Thu Jun 30 2022"
+release = "1.2.2"
+release_date = "Mon Aug 29 2022"
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
# language = None
diff --git a/doc/build/unreleased/366.rst b/doc/build/unreleased/366.rst
deleted file mode 100644
index 27b0278..0000000
--- a/doc/build/unreleased/366.rst
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change::
- :tags: bug, lexer
- :tickets: 366
-
- Fixed issue in lexer where the regexp used to match tags would not
- correctly interpret quoted sections individually. While this parsing issue
- still produced the same expected tag structure later on, the mis-handling
- of quoted sections was also subject to a regexp crash if a tag had a large
- number of quotes within its quoted sections. \ No newline at end of file