Skip to content

Commit

Permalink
Version 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AWhetter committed May 20, 2024
1 parent 4ff4116 commit bf2ff28
Show file tree
Hide file tree
Showing 15 changed files with 30 additions and 15 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,34 @@ Versions follow `Semantic Versioning <https://semver.org/>`_ (``<major>.<minor>.

.. towncrier release notes start
v3.1.0 (2024-05-20)
-------------------

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 unpickable configuration value warning when using autoapi_prepare_jinja_env (#445)
- Fix emitting ignore event twice for methods.


Misc
^^^^

- #388


v3.0.0 (2023-09-26)
-------------------

Expand Down
4 changes: 2 additions & 2 deletions autoapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
from .extension import setup

__all__ = ("setup",)
__version__ = "3.0.0"
__version_info__ = (3, 0, 0)
__version__ = "3.1.0"
__version_info__ = (3, 1, 0)
1 change: 0 additions & 1 deletion docs/changes/+59dd3b40.misc

This file was deleted.

1 change: 0 additions & 1 deletion docs/changes/+8cd14c4f.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion docs/changes/+af2042c3.misc

This file was deleted.

1 change: 0 additions & 1 deletion docs/changes/+cf0a1267.misc

This file was deleted.

1 change: 0 additions & 1 deletion docs/changes/224.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion docs/changes/226.feature

This file was deleted.

1 change: 0 additions & 1 deletion docs/changes/388.misc

This file was deleted.

1 change: 0 additions & 1 deletion docs/changes/398.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion docs/changes/412.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion docs/changes/414.feature

This file was deleted.

1 change: 0 additions & 1 deletion docs/changes/423.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion docs/changes/427.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion docs/changes/445.bugfix

This file was deleted.

0 comments on commit bf2ff28

Please sign in to comment.