diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index f5c203e0..8a8905c3 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -5,6 +5,29 @@ Versions follow `Semantic Versioning `_ (``..
.. towncrier release notes start
+v3.1.0a2 (2024-02-16)
+---------------------
+
+Bugfixes
+^^^^^^^^
+
+- Fix members inherited from Exception always being displayed (#226)
+
+
+v3.1.0a1 (2024-01-31)
+---------------------
+
+Features
+^^^^^^^^
+
+- Objects can render to their own page (#226)
+
+Misc
+^^^^
+
+- #388
+
+
v3.0.0 (2023-09-26)
-------------------
diff --git a/autoapi/__init__.py b/autoapi/__init__.py
index 796003e3..770f527b 100644
--- a/autoapi/__init__.py
+++ b/autoapi/__init__.py
@@ -3,5 +3,5 @@
from .extension import setup
__all__ = ("setup",)
-__version__ = "3.0.0"
-__version_info__ = (3, 0, 0)
+__version__ = "3.1.0a2"
+__version_info__ = (3, 1, 0)