Skip to content

Commit

Permalink
Bump to 6.0.0 final
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Dec 29, 2022
1 parent f1d1e9c commit 5b56a23
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
10 changes: 2 additions & 8 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Release 6.0.0 (in development)
==============================
Release 6.0.0 (released Dec 29, 2022)
=====================================

Dependencies
------------
Expand Down Expand Up @@ -46,9 +46,6 @@ Incompatible changes
roles. Also remove associated configuration variables ``c_allow_pre_v3`` and
``c_warn_on_allowed_pre_v3``. Patch by Adam Turner.

Deprecated
----------

Features added
--------------

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

Testing
--------

Release 5.3.0 (released Oct 16, 2022)
=====================================

Expand Down
6 changes: 3 additions & 3 deletions sphinx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
warnings.filterwarnings('ignore', 'The frontend.Option class .*',
DeprecationWarning, module='docutils.frontend')

__version__ = '6.0.0b3'
__version__ = '6.0.0'
__display_version__ = __version__ # used for command line version

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

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

_in_development = True
_in_development = False
if _in_development:
# Only import subprocess if needed
import subprocess
Expand Down

0 comments on commit 5b56a23

Please sign in to comment.