summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2022-08-29 14:00:07 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2022-08-29 14:00:07 -0400
commit5054cc07ce6a957143251d32a963b8e0e437457a (patch)
tree6c559c3832160a722271c6f44b9062f97a217c40
parentb5ac84bafc80c3e56a1ede317b7ae4173e762a4a (diff)
downloadmako-5054cc07ce6a957143251d32a963b8e0e437457a.tar.gz
- 1.2.2rel_1_2_2
-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