From 06780e3a1f0bef573b1a70b5c50313b324d5c500 Mon Sep 17 00:00:00 2001 From: Ashley Whetter Date: Wed, 28 Aug 2024 21:35:41 -0700 Subject: [PATCH] Version 3.3.0 --- CHANGELOG.rst | 23 +++++++++++++++++++++++ autoapi/__init__.py | 4 ++-- docs/changes/+9b32031d.misc | 1 - docs/changes/+f5e49f9f.misc.rst | 1 - docs/changes/425.misc | 1 - docs/changes/425.misc.1 | 1 - docs/changes/467.feature | 1 - docs/changes/477.bugfix.rst | 1 - 8 files changed, 25 insertions(+), 8 deletions(-) delete mode 100644 docs/changes/+9b32031d.misc delete mode 100644 docs/changes/+f5e49f9f.misc.rst delete mode 100644 docs/changes/425.misc delete mode 100644 docs/changes/425.misc.1 delete mode 100644 docs/changes/467.feature delete mode 100644 docs/changes/477.bugfix.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f3101888..0196bd40 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,29 @@ Versions follow `Semantic Versioning `_ (``.. .. towncrier release notes start +v3.3.0 (2024-08-28) +------------------- + +Features +^^^^^^^^ + +- Do not document members inherited from standard library classes. (#467) + + +Bugfixes +^^^^^^^^ + +- Fix instance attributes not being documented by inherited-members (#477) + + +Misc +^^^^ + +- #425 +- Fix the parser returning a dictionary instead of a list in the empty parse scenario +- Rename testenvs to all follow similar naming style + + v3.2.1 (2024-07-23) ------------------- diff --git a/autoapi/__init__.py b/autoapi/__init__.py index 1474686a..6df036fa 100644 --- a/autoapi/__init__.py +++ b/autoapi/__init__.py @@ -3,5 +3,5 @@ from .extension import setup __all__ = ("setup",) -__version__ = "3.2.1" -__version_info__ = (3, 2, 1) +__version__ = "3.3.0" +__version_info__ = (3, 3, 0) diff --git a/docs/changes/+9b32031d.misc b/docs/changes/+9b32031d.misc deleted file mode 100644 index ad830df3..00000000 --- a/docs/changes/+9b32031d.misc +++ /dev/null @@ -1 +0,0 @@ -Rename testenvs to all follow similar naming style \ No newline at end of file diff --git a/docs/changes/+f5e49f9f.misc.rst b/docs/changes/+f5e49f9f.misc.rst deleted file mode 100644 index ea14abd7..00000000 --- a/docs/changes/+f5e49f9f.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Fix the parser returning a dictionary instead of a list in the empty parse scenario diff --git a/docs/changes/425.misc b/docs/changes/425.misc deleted file mode 100644 index 7aec5ffe..00000000 --- a/docs/changes/425.misc +++ /dev/null @@ -1 +0,0 @@ -Perform stricter type checking on _astroid_utils \ No newline at end of file diff --git a/docs/changes/425.misc.1 b/docs/changes/425.misc.1 deleted file mode 100644 index 792c9be8..00000000 --- a/docs/changes/425.misc.1 +++ /dev/null @@ -1 +0,0 @@ -Enable stricter type checks that require little to no code changes \ No newline at end of file diff --git a/docs/changes/467.feature b/docs/changes/467.feature deleted file mode 100644 index 08ae137f..00000000 --- a/docs/changes/467.feature +++ /dev/null @@ -1 +0,0 @@ -Do not document members inherited from standard library classes. \ No newline at end of file diff --git a/docs/changes/477.bugfix.rst b/docs/changes/477.bugfix.rst deleted file mode 100644 index 877b26b1..00000000 --- a/docs/changes/477.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix instance attributes not being documented by inherited-members