Skip to content

Commit 5b56a23

Browse files
committed
Bump to 6.0.0 final
1 parent f1d1e9c commit 5b56a23

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed

CHANGES

+2-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Release 6.0.0 (in development)
2-
==============================
1+
Release 6.0.0 (released Dec 29, 2022)
2+
=====================================
33

44
Dependencies
55
------------
@@ -46,9 +46,6 @@ Incompatible changes
4646
roles. Also remove associated configuration variables ``c_allow_pre_v3`` and
4747
``c_warn_on_allowed_pre_v3``. Patch by Adam Turner.
4848

49-
Deprecated
50-
----------
51-
5249
Features added
5350
--------------
5451

@@ -63,9 +60,6 @@ Bugs fixed
6360
* #10984: LaTeX: Document :confval:`latex_additional_files` behavior for files
6461
with ``.tex`` extension.
6562

66-
Testing
67-
--------
68-
6963
Release 5.3.0 (released Oct 16, 2022)
7064
=====================================
7165

sphinx/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
warnings.filterwarnings('ignore', 'The frontend.Option class .*',
2020
DeprecationWarning, module='docutils.frontend')
2121

22-
__version__ = '6.0.0b3'
22+
__version__ = '6.0.0'
2323
__display_version__ = __version__ # used for command line version
2424

2525
#: Version info for better programmatic use.
@@ -30,11 +30,11 @@
3030
#:
3131
#: .. versionadded:: 1.2
3232
#: Before version 1.2, check the string ``sphinx.__version__``.
33-
version_info = (6, 0, 0, 'beta', 3)
33+
version_info = (6, 0, 0, 'final', 0)
3434

3535
package_dir = path.abspath(path.dirname(__file__))
3636

37-
_in_development = True
37+
_in_development = False
3838
if _in_development:
3939
# Only import subprocess if needed
4040
import subprocess

0 commit comments

Comments
 (0)