summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2019-02-03 23:18:18 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2019-02-03 23:18:18 +0900
commit4367e20ab436c734aad0169c87b2cf6811073bb4 (patch)
tree89c3b04f6e4ac6cbeaafdacb877a61d97454ee1e
parent2f61ba876c40bf8c77d74faf372279c3510166bb (diff)
downloadsphinx-git-4367e20ab436c734aad0169c87b2cf6811073bb4.tar.gz
Bump version
-rw-r--r--CHANGES21
-rw-r--r--sphinx/__init__.py6
2 files changed, 24 insertions, 3 deletions
diff --git a/CHANGES b/CHANGES
index 2ecae9e1a..1811eec4d 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,24 @@
+Release 1.8.5 (in development)
+==============================
+
+Dependencies
+------------
+
+Incompatible changes
+--------------------
+
+Deprecated
+----------
+
+Features added
+--------------
+
+Bugs fixed
+----------
+
+Testing
+--------
+
Release 1.8.4 (released Feb 03, 2019)
=====================================
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index a1442f208..1c305d027 100644
--- a/sphinx/__init__.py
+++ b/sphinx/__init__.py
@@ -36,8 +36,8 @@ if 'PYTHONWARNINGS' not in os.environ:
warnings.filterwarnings('ignore', "'U' mode is deprecated",
DeprecationWarning, module='docutils.io')
-__version__ = '1.8.4'
-__released__ = '1.8.4' # used when Sphinx builds its own docs
+__version__ = '1.8.5+'
+__released__ = '1.8.5' # used when Sphinx builds its own docs
#: Version info for better programmatic use.
#:
@@ -47,7 +47,7 @@ __released__ = '1.8.4' # used when Sphinx builds its own docs
#:
#: .. versionadded:: 1.2
#: Before version 1.2, check the string ``sphinx.__version__``.
-version_info = (1, 8, 4, 'final', 0)
+version_info = (1, 8, 5, 'beta', 0)
package_dir = path.abspath(path.dirname(__file__))