Skip to content

Commit 0917ed2

Browse files
committed
Version 3.7.0
1 parent 394beb4 commit 0917ed2

File tree

10 files changed

+28
-10
lines changed

10 files changed

+28
-10
lines changed

CHANGELOG.rst

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,32 @@ Versions follow `Semantic Versioning <https://semver.org/>`_ (``<major>.<minor>.
55

66
.. towncrier release notes start
77
8+
v3.7.0 (2026-02-10)
9+
-------------------
10+
11+
Features
12+
^^^^^^^^
13+
14+
- Added autoapi.import warning for when AutoAPI directives are given non-existent objects
15+
- Adding `autoapi_follow_symlinks`, which allows api to traverse into symlinked directories when generating the API documentation.
16+
- Drop support for Python 3.9 and officially support Python 3.14
17+
- Support rendering PEP-695 type parameters
18+
19+
20+
Bugfixes
21+
^^^^^^^^
22+
23+
- Render typing_extensions.TypeAlias like other type aliases (#520)
24+
- Fix `PythonFunction.overloads` typing when source code overload(s) do not provide a return type (#523)
25+
26+
27+
Misc
28+
^^^^
29+
30+
- Fix deprecation warnings raised by astroid and sphinx
31+
- Handling case where match returns None to fix mypy unit test.
32+
33+
834
v3.6.1 (2025-10-06)
935
-------------------
1036

autoapi/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
from .extension import setup
44

55
__all__ = ("setup",)
6-
__version__ = "3.6.1"
7-
__version_info__ = (3, 6, 1)
6+
__version__ = "3.7.0"
7+
__version_info__ = (3, 7, 0)

docs/changes/+41a5919b.feature.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/changes/+7eaa921c.misc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/changes/+830573ef.misc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/changes/+bb72571e.feature.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/changes/+c9447449.feature.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/changes/+d379912c.feature.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/changes/520.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/changes/523.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)