summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2022-11-15 09:36:43 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2022-11-15 09:36:43 -0500
commit2fd5daa24a09fc6a52f60bdb9402faaf91f2e7a1 (patch)
tree9a96f18ff5f5b5f7246e34b7a70030d3dc5a4c70
parent2c0f1e7df0fe7a9b0687143a4f442994081430c6 (diff)
downloadmako-2fd5daa24a09fc6a52f60bdb9402faaf91f2e7a1.tar.gz
- 1.2.4rel_1_2_4
-rw-r--r--doc/build/changelog.rst12
-rw-r--r--doc/build/conf.py4
-rw-r--r--doc/build/unreleased/368.rst9
3 files changed, 13 insertions, 12 deletions
diff --git a/doc/build/changelog.rst b/doc/build/changelog.rst
index e26dc24..e58352b 100644
--- a/doc/build/changelog.rst
+++ b/doc/build/changelog.rst
@@ -8,7 +8,17 @@ Changelog
.. changelog::
:version: 1.2.4
- :include_notes_from: unreleased
+ :released: Tue Nov 15 2022
+
+ .. change::
+ :tags: bug, codegen
+ :tickets: 368
+
+ Fixed issue where unpacking nested tuples in a for loop using would raise a
+ "couldn't apply loop context" error if the loop context was used. The regex
+ used to match the for loop expression now allows the list of loop variables
+ to contain parenthesized sub-tuples. Pull request courtesy Matt Trescott.
+
.. changelog::
:version: 1.2.3
diff --git a/doc/build/conf.py b/doc/build/conf.py
index 7d21f1e..654f3c7 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.3"
-release_date = "Thu Sep 22 2022"
+release = "1.2.4"
+release_date = "Tue Nov 15 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/368.rst b/doc/build/unreleased/368.rst
deleted file mode 100644
index 73d4bcb..0000000
--- a/doc/build/unreleased/368.rst
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change::
- :tags: bug, codegen
- :tickets: 368
-
- Fixed issue where unpacking nested tuples in a for loop using would raise a
- "couldn't apply loop context" error if the loop context was used. The regex
- used to match the for loop expression now allows the list of loop variables
- to contain parenthesized sub-tuples. Pull request courtesy Matt Trescott.
-