From 841ce100a6df4711b3a54fd271fdb73a40b0a53b Mon Sep 17 00:00:00 2001 From: Ashley Whetter Date: Sun, 1 Sep 2024 18:27:33 -0700 Subject: [PATCH] Version 3.3.1 --- CHANGELOG.rst | 18 ++++++++++++++++++ autoapi/__init__.py | 4 ++-- docs/changes/+168cc6cb.misc.rst | 1 - docs/changes/478.bugfix.rst | 4 ---- 4 files changed, 20 insertions(+), 7 deletions(-) delete mode 100644 docs/changes/+168cc6cb.misc.rst delete mode 100644 docs/changes/478.bugfix.rst 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.