From eab611e433d022f97674735434283281c5dd6d67 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 7 May 2017 18:19:19 +0900 Subject: [PATCH] Bump version --- CHANGES | 18 ++++++++++++++++++ sphinx/__init__.py | 6 +++--- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index de7c8d4e8..19e69f65c 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,21 @@ +Release 1.6 beta4 (in development) +================================== + +Incompatible changes +-------------------- + +Deprecated +---------- + +Features added +-------------- + +Bugs fixed +---------- + +Testing +-------- + Release 1.6 beta3 (released May 07, 2017) ========================================= diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 16ca3655e..25bc31581 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -34,13 +34,13 @@ if 'PYTHONWARNINGS' not in os.environ: warnings.filterwarnings('ignore', "'U' mode is deprecated", DeprecationWarning, module='docutils.io') -__version__ = '1.6b3' -__released__ = '1.6b3' # used when Sphinx builds its own docs +__version__ = '1.6+' +__released__ = '1.6' # 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, 6, 0, 'beta', 3) +version_info = (1, 6, 0, 'beta', 4) package_dir = path.abspath(path.dirname(__file__))