diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0196bd40..a7474992 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,24 @@ Versions follow `Semantic Versioning `_ (``.. .. towncrier release notes start +v3.3.1 (2024-09-01) +------------------- + +Bugfixes +^^^^^^^^ + +- Fix all class members missing when documenting a module with the same name as a standard library module + + Members inherited from the standard library can also have their skip value + overridden by autoapi-skip-member. (#478) + + +Misc +^^^^ + +- Updated all github actions. + + v3.3.0 (2024-08-28) ------------------- diff --git a/autoapi/__init__.py b/autoapi/__init__.py index 6df036fa..25c1fba1 100644 --- a/autoapi/__init__.py +++ b/autoapi/__init__.py @@ -3,5 +3,5 @@ from .extension import setup __all__ = ("setup",) -__version__ = "3.3.0" -__version_info__ = (3, 3, 0) +__version__ = "3.3.1" +__version_info__ = (3, 3, 1) diff --git a/docs/changes/+168cc6cb.misc.rst b/docs/changes/+168cc6cb.misc.rst deleted file mode 100644 index 05ba359d..00000000 --- a/docs/changes/+168cc6cb.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Updated all github actions. diff --git a/docs/changes/478.bugfix.rst b/docs/changes/478.bugfix.rst deleted file mode 100644 index f8bf4f41..00000000 --- a/docs/changes/478.bugfix.rst +++ /dev/null @@ -1,4 +0,0 @@ -Fix all class members missing when documenting a module with the same name as a standard library module - -Members inherited from the standard library can also have their skip value -overridden by autoapi-skip-member.