- 1.3.2
diff --git a/doc/build/changelog.rst b/doc/build/changelog.rst
index 0f1fec3..a4c8736 100644
--- a/doc/build/changelog.rst
+++ b/doc/build/changelog.rst
@@ -8,7 +8,18 @@
 
 .. changelog::
     :version: 1.3.2
-    :include_notes_from: unreleased
+    :released: Tue Jan 30 2024
+
+    .. change::
+        :tags: bug, lexer
+        :tickets: 323
+
+        Fixed parsing issue where attempting to render a single percent sign %
+        using an escaped percent %% would not function correctly if the escaped
+        percent were not the first character on a line.  Note that this is a revised
+        version of a similar change made in Mako 1.3.1 which caused unexpected
+        parsing regressions, resulting in the release being yanked.
+        Pull request courtesy Hai Zhu.
 
 .. changelog::
     :version: 1.3.1
diff --git a/doc/build/conf.py b/doc/build/conf.py
index 6cdfbbc..2d65988 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.3.1"
-release_date = "Mon Jan 22 2024"
+release = "1.3.2"
+release_date = "Tue Jan 30 2024"
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
 # language = None
diff --git a/doc/build/unreleased/323.rst b/doc/build/unreleased/323.rst
deleted file mode 100644
index 7df0a2b..0000000
--- a/doc/build/unreleased/323.rst
+++ /dev/null
@@ -1,10 +0,0 @@
-.. change::
-    :tags: bug, lexer
-    :tickets: 323
-
-    Fixed parsing issue where attempting to render a single percent sign %
-    using an escaped percent %% would not function correctly if the escaped
-    percent were not the first character on a line.  Note that this is a revised
-    version of a similar change made in Mako 1.3.1 which caused unexpected
-    parsing regressions, resulting in the release being yanked.
-    Pull request courtesy Hai Zhu.