Version 2.1.1

pull/394/head v2.1.1
Ashley Whetter 12 months ago
parent c3c6e15d16
commit 0ac1e11359

@ -5,6 +5,31 @@ Versions follow `Semantic Versioning <https://semver.org/>`_ (``<major>.<minor>.
.. towncrier release notes start
v2.1.1 (2023-06-10)
-------------------
Bugfixes
^^^^^^^^
- Fix "document isn't included" warning when using autoapi_add_toctree_entry (#319)
- Types used in PEP-604 union syntax can be linked with intersphinx (#366)
- Fix class overrides not rendering correctly.
- Fix separated type comments for arguments not merging correctly in Python 3.7
- Fixed viewcode being unable to find the source code for imported objects
Improved Documentation
^^^^^^^^^^^^^^^^^^^^^^
- Made it clearer how to customise what objects AutoAPI will document. (#339)
Misc
^^^^
- #375, #382
v2.1.0 (2023-03-28)
-------------------

@ -3,5 +3,5 @@
from .extension import setup
__all__ = ("setup",)
__version__ = "2.1.0"
__version_info__ = (2, 1, 0)
__version__ = "2.1.1"
__version_info__ = (2, 1, 1)

@ -1 +0,0 @@
Added a basic dev container

@ -1 +0,0 @@
Switched linter from pylint to ruff

@ -1 +0,0 @@
Fix class overrides not rendering correctly.

@ -1 +0,0 @@
Switched to Google style docstrings

@ -1 +0,0 @@
Fix separated type comments for arguments not merging correctly in Python 3.7

@ -1 +0,0 @@
Tests build HTML output and parse the HTML to validate the output structure.

@ -1 +0,0 @@
Fixed viewcode being unable to find the source code for imported objects

@ -1 +0,0 @@
Fix "document isn't included" warning when using autoapi_add_toctree_entry

@ -1 +0,0 @@
Made it clearer how to customise what objects AutoAPI will document.

@ -1 +0,0 @@
Types used in PEP-604 union syntax can be linked with intersphinx

@ -1 +0,0 @@
Remove redundant dependency on wheel

@ -1 +0,0 @@
Replaced usage of unidecode with anyascii to fix license incompatibilities.

@ -59,7 +59,6 @@ commands =
sphinx-build -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
[testenv:release_notes]
skip_install = true
deps =
towncrier
commands =

Loading…
Cancel
Save