Version 3.0.0

pull/409/head v3.0.0
Ashley Whetter 8 months ago
parent 6317148f0d
commit 006142dbad

@ -5,6 +5,29 @@ Versions follow `Semantic Versioning <https://semver.org/>`_ (``<major>.<minor>.
.. towncrier release notes start
v3.0.0 (2023-09-26)
-------------------
Bugfixes
^^^^^^^^
- Ensure `tooltip` is always a `str`. (str-tooltip)
- Replaced usage of deprecated sphinx.util.status_iterator (#391)
Deprecations and Removals
^^^^^^^^^^^^^^^^^^^^^^^^^
- Removed support for documenting languages other than Python (#248)
- Removed support for Python 3.7
Misc
^^^^
- #389, #390, #392, #407
v2.1.1 (2023-06-10)
-------------------

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

@ -1 +0,0 @@
Removed support for Python 3.7

@ -1 +0,0 @@
Removed old pylint pragmas

@ -1 +0,0 @@
Removed support for documenting languages other than Python

@ -1 +0,0 @@
Build docs in Python 3.11 on readthedocs

@ -1 +0,0 @@
Start testing in Python 3.12

@ -1 +0,0 @@
Replaced usage of deprecated sphinx.util.status_iterator

@ -1 +0,0 @@
Replace usage of deprecated astroid.NodeNG.doc

@ -1 +0,0 @@
Ensure `tooltip` is always a `str`.

@ -1 +0,0 @@
Replace usage of removed astroid.NodeNG.doc when building inheritance diagram
Loading…
Cancel
Save