Skip to content

Commit

Permalink
Version 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AWhetter committed Jul 20, 2024
1 parent 746e00d commit a40327e
Show file tree
Hide file tree
Showing 9 changed files with 31 additions and 9 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,35 @@ Versions follow `Semantic Versioning <https://semver.org/>`_ (``<major>.<minor>.

.. towncrier release notes start
v3.2.0 (2024-07-20)
-------------------

Features
^^^^^^^^

- functools.cached_property is considered a property (#436)


Bugfixes
^^^^^^^^

- Gracefully handle no objects being rendered (#448)
- Fix ignoring undocumented instance attributes (#451)


Deprecations and Removals
^^^^^^^^^^^^^^^^^^^^^^^^^

- Removed ability for autoapi_template_dir to be relative to cwd. This was supposed to have been retired in v3 (#457)
- Removed autoapi_include_summaries option. This was supposed to have been retired in v3


Misc
^^^^

- #428, #449


v3.1.2 (2024-06-20)
-------------------

Expand Down
4 changes: 2 additions & 2 deletions autoapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
from .extension import setup

__all__ = ("setup",)
__version__ = "3.1.2"
__version_info__ = (3, 1, 2)
__version__ = "3.2.0"
__version_info__ = (3, 2, 0)
1 change: 0 additions & 1 deletion docs/changes/+7e9094d4.removal

This file was deleted.

1 change: 0 additions & 1 deletion docs/changes/428.misc

This file was deleted.

1 change: 0 additions & 1 deletion docs/changes/436.feature

This file was deleted.

1 change: 0 additions & 1 deletion docs/changes/448.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion docs/changes/449.misc

This file was deleted.

1 change: 0 additions & 1 deletion docs/changes/451.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion docs/changes/457.removal

This file was deleted.

0 comments on commit a40327e

Please sign in to comment.