File tree Expand file tree Collapse file tree 2 files changed +29
-2
lines changed Expand file tree Collapse file tree 2 files changed +29
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,33 @@ Versions follow `Semantic Versioning <https://semver.org/>`_ (``<major>.<minor>.
5
5
6
6
.. towncrier release notes start
7
7
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
+
8
35
v3.0.0 (2023-09-26)
9
36
-------------------
10
37
Original file line number Diff line number Diff line change 3
3
from .extension import setup
4
4
5
5
__all__ = ("setup" ,)
6
- __version__ = "3.0.0 "
7
- __version_info__ = (3 , 0 , 0 )
6
+ __version__ = "3.1.0b0 "
7
+ __version_info__ = (3 , 1 , 0 )
You can’t perform that action at this time.
0 commit comments