diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-02-03 23:18:18 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-02-03 23:18:18 +0900 |
commit | 4367e20ab436c734aad0169c87b2cf6811073bb4 (patch) | |
tree | 89c3b04f6e4ac6cbeaafdacb877a61d97454ee1e | |
parent | 2f61ba876c40bf8c77d74faf372279c3510166bb (diff) | |
download | sphinx-git-4367e20ab436c734aad0169c87b2cf6811073bb4.tar.gz |
Bump version
-rw-r--r-- | CHANGES | 21 | ||||
-rw-r--r-- | sphinx/__init__.py | 6 |
2 files changed, 24 insertions, 3 deletions
@@ -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__)) |