@@ -5,6 +5,157 @@ Versions follow `Semantic Versioning <https://semver.org/>`_ (``<major>.<minor>.
55
66.. towncrier release notes start
77
8+ v3.3.3 (2024-10-25)
9+ -------------------
10+
11+ Bugfixes
12+ ^^^^^^^^
13+
14+ - Document packages and modules under a single "submodules" heading (#450)
15+ - Fix crash when __init__ is assigned to (#488)
16+ - Fix documenting incorrect attributes from __init__ (#497)
17+
18+
19+ Misc
20+ ^^^^
21+
22+ - #426, #462, #491, #492
23+
24+
25+ v3.3.2 (2024-09-25)
26+ -------------------
27+
28+ Bugfixes
29+ ^^^^^^^^
30+
31+ - Fix types missing from documentation generated by autodoc-style directives. (#473)
32+
33+
34+ v3.3.1 (2024-09-01)
35+ -------------------
36+
37+ Bugfixes
38+ ^^^^^^^^
39+
40+ - Fix all class members missing when documenting a module with the same name as a standard library module
41+
42+ Members inherited from the standard library can also have their skip value
43+ overridden by autoapi-skip-member. (#478)
44+
45+
46+ Misc
47+ ^^^^
48+
49+ - Updated all github actions.
50+
51+
52+ v3.3.0 (2024-08-28)
53+ -------------------
54+
55+ Features
56+ ^^^^^^^^
57+
58+ - Do not document members inherited from standard library classes. (#467)
59+
60+
61+ Bugfixes
62+ ^^^^^^^^
63+
64+ - Fix instance attributes not being documented by inherited-members (#477)
65+
66+
67+ Misc
68+ ^^^^
69+
70+ - #425
71+ - Fix the parser returning a dictionary instead of a list in the empty parse scenario
72+ - Rename testenvs to all follow similar naming style
73+
74+
75+ v3.2.1 (2024-07-23)
76+ -------------------
77+
78+ Bugfixes
79+ ^^^^^^^^
80+
81+ - Fix error or duplicates when __init__ assigns to a property (#466)
82+
83+
84+ v3.2.0 (2024-07-20)
85+ -------------------
86+
87+ Features
88+ ^^^^^^^^
89+
90+ - functools.cached_property is considered a property (#436)
91+
92+
93+ Bugfixes
94+ ^^^^^^^^
95+
96+ - Gracefully handle no objects being rendered (#448)
97+ - Fix ignoring undocumented instance attributes (#451)
98+
99+
100+ Deprecations and Removals
101+ ^^^^^^^^^^^^^^^^^^^^^^^^^
102+
103+ - Removed ability for autoapi_template_dir to be relative to cwd. This was supposed to have been retired in v3 (#457)
104+ - Removed autoapi_include_summaries option. This was supposed to have been retired in v3
105+
106+
107+ Misc
108+ ^^^^
109+
110+ - #428, #449
111+
112+
113+ v3.1.2 (2024-06-20)
114+ -------------------
115+
116+ Bugfixes
117+ ^^^^^^^^
118+
119+ - Fix imported members being rendered in modules (#452)
120+
121+
122+ v3.1.1 (2024-05-22)
123+ -------------------
124+
125+ Bugfixes
126+ ^^^^^^^^
127+
128+ - Fix private subpackages causing orphan pages (#446)
129+
130+
131+ v3.1.0 (2024-05-20)
132+ -------------------
133+
134+ Features
135+ ^^^^^^^^
136+
137+ - Objects can render to their own page (#226)
138+ - Render PEP-695 type aliases as TypeAlias assignments. (#414)
139+
140+
141+ Bugfixes
142+ ^^^^^^^^
143+
144+ - Values are always rendered for TypeAlises and PEP-695 type aliases. (#224)
145+ - Fix submodule with `__init__.pyi ` documented as `__init__ ` instead of submodule name (#398)
146+ - Fix IndexError when a module docstring contains only a heading (#412)
147+ - Preserve strings inside Literal type annotations (#423)
148+ - Stopped using xrefs in page titles (#427)
149+ - Fix unpickable configuration value warning when using autoapi_prepare_jinja_env (#445)
150+ - Fix emitting ignore event twice for methods.
151+
152+
153+ Misc
154+ ^^^^
155+
156+ - #388
157+
158+
8159v3.0.0 (2023-09-26)
9160-------------------
10161
0 commit comments