diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a7474992..57cf121e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,15 @@ Versions follow `Semantic Versioning `_ (``.. .. towncrier release notes start +v3.3.2 (2024-09-25) +------------------- + +Bugfixes +^^^^^^^^ + +- Fix types missing from documentation generated by autodoc-style directives. (#473) + + v3.3.1 (2024-09-01) ------------------- diff --git a/autoapi/__init__.py b/autoapi/__init__.py index 25c1fba1..3d6031ae 100644 --- a/autoapi/__init__.py +++ b/autoapi/__init__.py @@ -3,5 +3,5 @@ from .extension import setup __all__ = ("setup",) -__version__ = "3.3.1" -__version_info__ = (3, 3, 1) +__version__ = "3.3.2" +__version_info__ = (3, 3, 2) diff --git a/docs/changes/473.bugfix.rst b/docs/changes/473.bugfix.rst deleted file mode 100644 index 2df86421..00000000 --- a/docs/changes/473.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix types missing from documentation generated by autodoc-style directives.