diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 0a0d7635..f3101888 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -5,6 +5,15 @@ Versions follow `Semantic Versioning `_ (``..
.. towncrier release notes start
+v3.2.1 (2024-07-23)
+-------------------
+
+Bugfixes
+^^^^^^^^
+
+- Fix error or duplicates when __init__ assigns to a property (#466)
+
+
v3.2.0 (2024-07-20)
-------------------
diff --git a/autoapi/__init__.py b/autoapi/__init__.py
index d207a973..1474686a 100644
--- a/autoapi/__init__.py
+++ b/autoapi/__init__.py
@@ -3,5 +3,5 @@
from .extension import setup
__all__ = ("setup",)
-__version__ = "3.2.0"
-__version_info__ = (3, 2, 0)
+__version__ = "3.2.1"
+__version_info__ = (3, 2, 1)
diff --git a/docs/changes/466.bugfix b/docs/changes/466.bugfix
deleted file mode 100644
index 15bf5869..00000000
--- a/docs/changes/466.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fix error or duplicates when __init__ assigns to a property
\ No newline at end of file