- 1.2.1
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::
     :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 @@
 # 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.