Version 1.4.0

pull/220/head v1.4.0
Ashley Whetter 4 years ago
parent c51fb3f737
commit 9bd08a2bc1

@ -3,7 +3,7 @@ Changelog
Versions follow `Semantic Versioning <https://semver.org/>`_ (``<major>.<minor>.<patch>``).
vTBC (TBC)
v1.4.0 (2020-06-07)
-------------------
Features
@ -32,6 +32,8 @@ Bug Fixes
* `#193 <https://github.com/readthedocs/sphinx-autoapi/issues/193>` and
* `#208 <https://github.com/readthedocs/sphinx-autoapi/issues/208>`: (Python)
Inheritance diagrams can follow imports to find classes to document.
* `#213 <https://github.com/readthedocs/sphinx-autoapi/issues/213>`: (Python)
Fixed module summary never showing.
Trivial/Internal Changes
^^^^^^^^^^^^^^^^^^^^^^^^

@ -1,2 +1,2 @@
__version_info__ = (1, 3, 0)
__version_info__ = (1, 4, 0)
__version__ = ".".join(str(x) for x in __version_info__)

@ -14,7 +14,7 @@ Pre-Checks
Preparation
-----------
1. Update the version number in ``setup.py``, ``autoapi/__init__.py`` and ``docs/conf.py``.
1. Update the version number in ``autoapi/_version.py``.
2. Add any missing changelog entries.
3. Put the version number and release date into the changelog.
4. Commit and push the changes.

Loading…
Cancel
Save