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:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2018-01-15 16:26:11 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2018-01-15 16:26:11 +0300
commitbb34f0199a05f41f4f47d2536e82db29a1b78858 (patch)
tree4d2f975a31e0459c37fbcc1b5a0e2c4a8870d395
parentbcb1bd914db1d8013ae7d8a3555f80f90e7b0413 (diff)
Bump to 1.7.0 beta1v1.7.0b1
-rw-r--r--CHANGES4
-rw-r--r--sphinx/__init__.py6
2 files changed, 5 insertions, 5 deletions
diff --git a/CHANGES b/CHANGES
index 955e59802..95ac8d4b0 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,5 @@
-Release 1.7 (in development)
-============================
+Release 1.7.0 beta1 (released Jan 15, 2018)
+===========================================
Dependencies
------------
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index c84e2672f..3dbabf7f5 100644
--- a/sphinx/__init__.py
+++ b/sphinx/__init__.py
@@ -31,13 +31,13 @@ if 'PYTHONWARNINGS' not in os.environ:
warnings.filterwarnings('ignore', "'U' mode is deprecated",
DeprecationWarning, module='docutils.io')
-__version__ = '1.7+'
-__released__ = '1.7' # used when Sphinx builds its own docs
+__version__ = '1.7.0b1'
+__released__ = '1.7.0b1' # used when Sphinx builds its own docs
# version info for better programmatic use
# possible values for 3rd element: 'alpha', 'beta', 'rc', 'final'
# 'final' has 0 as the last element
-version_info = (1, 7, 0, 'beta', 0)
+version_info = (1, 7, 0, 'beta', 1)
package_dir = path.abspath(path.dirname(__file__))