diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 6846ef67..0a0d7635 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -5,6 +5,35 @@ Versions follow `Semantic Versioning `_ (``..
.. towncrier release notes start
+v3.2.0 (2024-07-20)
+-------------------
+
+Features
+^^^^^^^^
+
+- functools.cached_property is considered a property (#436)
+
+
+Bugfixes
+^^^^^^^^
+
+- Gracefully handle no objects being rendered (#448)
+- Fix ignoring undocumented instance attributes (#451)
+
+
+Deprecations and Removals
+^^^^^^^^^^^^^^^^^^^^^^^^^
+
+- Removed ability for autoapi_template_dir to be relative to cwd. This was supposed to have been retired in v3 (#457)
+- Removed autoapi_include_summaries option. This was supposed to have been retired in v3
+
+
+Misc
+^^^^
+
+- #428, #449
+
+
v3.1.2 (2024-06-20)
-------------------
diff --git a/autoapi/__init__.py b/autoapi/__init__.py
index 81c53d12..d207a973 100644
--- a/autoapi/__init__.py
+++ b/autoapi/__init__.py
@@ -3,5 +3,5 @@
from .extension import setup
__all__ = ("setup",)
-__version__ = "3.1.2"
-__version_info__ = (3, 1, 2)
+__version__ = "3.2.0"
+__version_info__ = (3, 2, 0)
diff --git a/docs/changes/+7e9094d4.removal b/docs/changes/+7e9094d4.removal
deleted file mode 100644
index 2aa15328..00000000
--- a/docs/changes/+7e9094d4.removal
+++ /dev/null
@@ -1 +0,0 @@
-Removed autoapi_include_summaries option. This was supposed to have been retired in v3
\ No newline at end of file
diff --git a/docs/changes/428.misc b/docs/changes/428.misc
deleted file mode 100644
index 9e01e9e0..00000000
--- a/docs/changes/428.misc
+++ /dev/null
@@ -1 +0,0 @@
-Address get_object_members() incompatibility with Sphinx v8
\ No newline at end of file
diff --git a/docs/changes/436.feature b/docs/changes/436.feature
deleted file mode 100644
index 05571ec0..00000000
--- a/docs/changes/436.feature
+++ /dev/null
@@ -1 +0,0 @@
-functools.cached_property is considered a property
\ No newline at end of file
diff --git a/docs/changes/448.bugfix b/docs/changes/448.bugfix
deleted file mode 100644
index b7446d84..00000000
--- a/docs/changes/448.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Gracefully handle no objects being rendered
\ No newline at end of file
diff --git a/docs/changes/449.misc b/docs/changes/449.misc
deleted file mode 100644
index fca16dd1..00000000
--- a/docs/changes/449.misc
+++ /dev/null
@@ -1 +0,0 @@
-Drop Python <=3.7 syntax
\ No newline at end of file
diff --git a/docs/changes/451.bugfix b/docs/changes/451.bugfix
deleted file mode 100644
index f843c984..00000000
--- a/docs/changes/451.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fix ignoring undocumented instance attributes
\ No newline at end of file
diff --git a/docs/changes/457.removal b/docs/changes/457.removal
deleted file mode 100644
index 9e3144a1..00000000
--- a/docs/changes/457.removal
+++ /dev/null
@@ -1 +0,0 @@
-Removed ability for autoapi_template_dir to be relative to cwd. This was supposed to have been retired in v3
\ No newline at end of file