diff options
author | Adam Turner <9087854+aa-turner@users.noreply.github.com> | 2023-04-29 22:25:57 +0100 |
---|---|---|
committer | Adam Turner <9087854+aa-turner@users.noreply.github.com> | 2023-04-29 22:25:57 +0100 |
commit | d568b2f4f7cca743fcbf70814d15602d8129b790 (patch) | |
tree | 92b17d0ba2691f37b0f2c93916a6e0a29a6d4ba1 | |
parent | ff79edf353f5cc6e02036f58e0295dc704c5e681 (diff) | |
download | sphinx-git-d568b2f4f7cca743fcbf70814d15602d8129b790.tar.gz |
Bump to 7.0.0 finalv7.0.0
-rw-r--r-- | CHANGES | 19 | ||||
-rw-r--r-- | sphinx/__init__.py | 4 |
2 files changed, 4 insertions, 19 deletions
@@ -1,8 +1,5 @@ -Release 7.0.0 (in development) -============================== - -Dependencies ------------- +Release 7.0.0 (released Apr 29, 2023) +===================================== Incompatible changes -------------------- @@ -32,18 +29,6 @@ Incompatible changes ``sphinx.builders.html.HTMLTranslator`` attributes. * #11385: Remove support for HTML 4 output. -Deprecated ----------- - -Features added --------------- - -Bugs fixed ----------- - -Testing --------- - Release 6.2.1 (released Apr 25, 2023) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 09e541875..bf9bd24cd 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -19,7 +19,7 @@ warnings.filterwarnings('ignore', "'U' mode is deprecated", warnings.filterwarnings('ignore', 'The frontend.Option class .*', DeprecationWarning, module='docutils.frontend') -__version__ = '7.0.0rc1' +__version__ = '7.0.0' __display_version__ = __version__ # used for command line version #: Version info for better programmatic use. @@ -30,7 +30,7 @@ __display_version__ = __version__ # used for command line version #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (7, 0, 0, 'rc', 1) +version_info = (7, 0, 0, 'final', 0) package_dir = path.abspath(path.dirname(__file__)) |