Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Turner <9087854+aa-turner@users.noreply.github.com>2022-10-16 18:57:26 +0300
committerAdam Turner <9087854+aa-turner@users.noreply.github.com>2022-10-16 18:57:26 +0300
commitae42de48eba28718ba4a2f91945a2800ff7c48df (patch)
treed385fae55248e29433cf99c8de795cc02b53cfe5
parent25851e115aa9e84e8e2addb135f050e2b79e4ac2 (diff)
Bump version
-rw-r--r--sphinx/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index 0478e8b97..17d8c971a 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__ = '6.0.0b1'
+__version__ = '6.0.0b2'
__display_version__ = __version__ # used for command line version
#: Version info for better programmatic use.
@@ -30,11 +30,11 @@ __display_version__ = __version__ # used for command line version
#:
#: .. versionadded:: 1.2
#: Before version 1.2, check the string ``sphinx.__version__``.
-version_info = (6, 0, 0, 'beta', 1)
+version_info = (6, 0, 0, 'beta', 2)
package_dir = path.abspath(path.dirname(__file__))
-_in_development = False
+_in_development = True
if _in_development:
# Only import subprocess if needed
import subprocess