summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2022-06-30 11:42:50 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2022-06-30 11:42:50 -0400
commit00f1b33b13088ce17b11a63ee0d1d78aa204fceb (patch)
tree237ef288f9b01f3f43c022c9e530a016b7bb3a3e
parent36e10468c1e159803147bfbc7fffc930a9bd368c (diff)
downloadmako-00f1b33b13088ce17b11a63ee0d1d78aa204fceb.tar.gz
- 1.2.1rel_1_2_1
-rw-r--r--doc/build/changelog.rst17
-rw-r--r--doc/build/conf.py4
-rw-r--r--doc/build/unreleased/360.rst6
-rw-r--r--doc/build/unreleased/361.rst7
4 files changed, 18 insertions, 16 deletions
diff --git a/doc/build/changelog.rst b/doc/build/changelog.rst
index 72f297a..e14858f 100644
--- a/doc/build/changelog.rst
+++ b/doc/build/changelog.rst
@@ -8,7 +8,22 @@ Changelog
.. changelog::
:version: 1.2.1
- :include_notes_from: unreleased
+ :released: Thu Jun 30 2022
+
+ .. change::
+ :tags: performance
+ :tickets: 361
+
+ Optimized some codepaths within the lexer/Python code generation process,
+ improving performance for generation of templates prior to their being
+ cached. Pull request courtesy Takuto Ikuta.
+
+ .. change::
+ :tags: bug, tests
+ :tickets: 360
+
+ Various fixes to the test suite in the area of exception message rendering
+ to accommodate for variability in Python versions as well as Pygments.
.. changelog::
:version: 1.2.0
diff --git a/doc/build/conf.py b/doc/build/conf.py
index 774103d..4ea457a 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.0"
-release_date = "Tue Jan 18 2022"
+release = "1.2.1"
+release_date = "Thu Jun 30 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/360.rst b/doc/build/unreleased/360.rst
deleted file mode 100644
index 91f0c9e..0000000
--- a/doc/build/unreleased/360.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. change::
- :tags: bug, tests
- :tickets: 360
-
- Various fixes to the test suite in the area of exception message rendering
- to accommodate for variability in Python versions as well as Pygments.
diff --git a/doc/build/unreleased/361.rst b/doc/build/unreleased/361.rst
deleted file mode 100644
index 7d7ef4b..0000000
--- a/doc/build/unreleased/361.rst
+++ /dev/null
@@ -1,7 +0,0 @@
-.. change::
- :tags: performance
- :tickets: 361
-
- Optimized some codepaths within the lexer/Python code generation process,
- improving performance for generation of templates prior to their being
- cached. Pull request courtesy Takuto Ikuta.