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)