Version 1.8.2

This commit is contained in:
Ashley Whetter 2021-07-26 18:10:22 -07:00
parent 2c5c87157a
commit 354535190c
2 changed files with 5 additions and 9 deletions

View File

@ -3,15 +3,9 @@ Changelog
Versions follow `Semantic Versioning <https://semver.org/>`_ (``<major>.<minor>.<patch>``).
v1.8.2 (TBC)
v1.8.2 (2021-07-26)
-------------------
Features
^^^^^^^^
* `#292 <https://github.com/readthedocs/sphinx-autoapi/issues/292>`:
Explicitly use the domain for generated directives.
Bug Fixes
^^^^^^^^^
@ -22,6 +16,8 @@ Bug Fixes
instead of relative to the conf.py file.
* `#289 <https://github.com/readthedocs/sphinx-autoapi/issues/289>`: (Python)
Fixed AttributeError using inheritance diagrams on a module with plain imports.
* `#292 <https://github.com/readthedocs/sphinx-autoapi/issues/292>`:
Explicitly use the domain for generated directives.
v1.8.1 (2021-04-24)

View File

@ -3,5 +3,5 @@
from .extension import setup
__version__ = "1.8.1"
__version_info__ = (1, 8, 1)
__version__ = "1.8.2"
__version_info__ = (1, 8, 2)