From 9ae1abcc5f1d5061f029a0b7e9cbf19cd7eb595e Mon Sep 17 00:00:00 2001 From: Ashley Whetter Date: Sun, 24 Mar 2024 15:18:59 -0700 Subject: [PATCH] Version 3.1.0a4 --- CHANGELOG.rst | 22 ++++++++++++++++++++++ autoapi/__init__.py | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f5c203e0..6ead3933 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,28 @@ Versions follow `Semantic Versioning `_ (``.. .. towncrier release notes start +v3.0.0 (2024-03-24) +------------------- + +Features +^^^^^^^^ + +- Objects can render to their own page (#226) + + +Bugfixes +^^^^^^^^ + +- Fix submodule with `__init__.pyi` documented as `__init__` instead of submodule name (#398) +- Fix IndexError when a module docstring contains only a heading (#412) + + +Misc +^^^^ + +- #388 + + v3.0.0 (2023-09-26) ------------------- diff --git a/autoapi/__init__.py b/autoapi/__init__.py index 796003e3..ebfd2783 100644 --- a/autoapi/__init__.py +++ b/autoapi/__init__.py @@ -3,5 +3,5 @@ from .extension import setup __all__ = ("setup",) -__version__ = "3.0.0" +__version__ = "3.0.0a4" __version_info__ = (3, 0, 0)