Skip to content

Commit 53de7fd

Browse files
committed
Version 3.1.0b0
1 parent f23b079 commit 53de7fd

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

CHANGELOG.rst

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

66
.. towncrier release notes start
77
8+
v3.1.0.b0 (2024-04-12)
9+
----------------------
10+
11+
Features
12+
^^^^^^^^
13+
14+
- Objects can render to their own page (#226)
15+
- Render PEP-695 type aliases as TypeAlias assignments. (#414)
16+
17+
18+
Bugfixes
19+
^^^^^^^^
20+
21+
- Values are always rendered for TypeAlises and PEP-695 type aliases. (#224)
22+
- Fix submodule with `__init__.pyi` documented as `__init__` instead of submodule name (#398)
23+
- Fix IndexError when a module docstring contains only a heading (#412)
24+
- Preserve strings inside Literal type annotations (#423)
25+
- Stopped using xrefs in page titles (#427)
26+
- Fix emitting ignore event twice for methods.
27+
28+
29+
Misc
30+
^^^^
31+
32+
- #388
33+
34+
835
v3.0.0 (2023-09-26)
936
-------------------
1037

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.0.0"
7-
__version_info__ = (3, 0, 0)
6+
__version__ = "3.1.0b0"
7+
__version_info__ = (3, 1, 0)

0 commit comments

Comments
 (0)