From 53de7fd42d84ee7d43a396d7bd6ff40a537845ed Mon Sep 17 00:00:00 2001 From: Ashley Whetter Date: Fri, 12 Apr 2024 09:50:09 -0700 Subject: [PATCH] Version 3.1.0b0 --- CHANGELOG.rst | 27 +++++++++++++++++++++++++++ autoapi/__init__.py | 4 ++-- 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f5c203e..cc51cd6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,33 @@ Versions follow `Semantic Versioning `_ (``.. .. towncrier release notes start +v3.1.0.b0 (2024-04-12) +---------------------- + +Features +^^^^^^^^ + +- Objects can render to their own page (#226) +- Render PEP-695 type aliases as TypeAlias assignments. (#414) + + +Bugfixes +^^^^^^^^ + +- Values are always rendered for TypeAlises and PEP-695 type aliases. (#224) +- Fix submodule with `__init__.pyi` documented as `__init__` instead of submodule name (#398) +- Fix IndexError when a module docstring contains only a heading (#412) +- Preserve strings inside Literal type annotations (#423) +- Stopped using xrefs in page titles (#427) +- Fix emitting ignore event twice for methods. + + +Misc +^^^^ + +- #388 + + v3.0.0 (2023-09-26) ------------------- diff --git a/autoapi/__init__.py b/autoapi/__init__.py index 796003e..6253631 100644 --- a/autoapi/__init__.py +++ b/autoapi/__init__.py @@ -3,5 +3,5 @@ from .extension import setup __all__ = ("setup",) -__version__ = "3.0.0" -__version_info__ = (3, 0, 0) +__version__ = "3.1.0b0" +__version_info__ = (3, 1, 0)