summaryrefslogtreecommitdiff
path: root/sphinx
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2020-03-23 00:01:52 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2020-03-23 00:04:42 +0900
commitf8e0a0e23a152e8875185809b414590baf6eb93c (patch)
treee594c3dd66ce9d829a62c370e396d487726a516e /sphinx
parenta6868e0ca12bace469e7ac1d01e46f78acf3718a (diff)
downloadsphinx-git-f8e0a0e23a152e8875185809b414590baf6eb93c.tar.gz
Bump to 3.0.0 beta1v3.0.0b1
Diffstat (limited to 'sphinx')
-rw-r--r--sphinx/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index 4889f35d5..aae7e687a 100644
--- a/sphinx/__init__.py
+++ b/sphinx/__init__.py
@@ -32,8 +32,8 @@ if 'PYTHONWARNINGS' not in os.environ:
warnings.filterwarnings('ignore', "'U' mode is deprecated",
DeprecationWarning, module='docutils.io')
-__version__ = '3.0.0+'
-__released__ = '3.0.0' # used when Sphinx builds its own docs
+__version__ = '3.0.0b1'
+__released__ = '3.0.0b1' # used when Sphinx builds its own docs
#: Version info for better programmatic use.
#:
@@ -43,7 +43,7 @@ __released__ = '3.0.0' # used when Sphinx builds its own docs
#:
#: .. versionadded:: 1.2
#: Before version 1.2, check the string ``sphinx.__version__``.
-version_info = (3, 0, 0, 'beta', 0)
+version_info = (3, 0, 0, 'beta', 1)
package_dir = path.abspath(path.dirname(__file__))