From d029b3d5c94aeeadbdbf197356d2a4c6a0335b8d Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Wed, 21 Mar 2018 21:03:54 +0900 Subject: [PATCH 1/2] Bump to 1.7.2 final --- CHANGES | 16 ++-------------- sphinx/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 16 deletions(-) diff --git a/CHANGES b/CHANGES index b7f7b3506..66271df6a 100644 --- a/CHANGES +++ b/CHANGES @@ -1,20 +1,11 @@ -Release 1.7.2 (in development) -============================== - -Dependencies ------------- +Release 1.7.2 (released Mar 21, 2018) +===================================== Incompatible changes -------------------- * #4520: apidoc: folders with an empty __init__.py are no longer excluded from TOC -Deprecated ----------- - -Features added --------------- - Bugs fixed ---------- @@ -38,9 +29,6 @@ Bugs fixed * epub: Fix docTitle elements of toc.ncx is not escaped * #4520: apidoc: Subpackage not in toc (introduced in 1.6.6) now fixed -Testing --------- - Release 1.7.1 (released Feb 23, 2018) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index b819b1d5f..e93c6da09 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.2+' +__version__ = '1.7.2' __released__ = '1.7.2' # 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, 2, 'beta', 0) +version_info = (1, 7, 2, 'final', 0) package_dir = path.abspath(path.dirname(__file__)) From 991b471025ca6211f01a8cf10996d1e5e64b0016 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Wed, 21 Mar 2018 21:06:48 +0900 Subject: [PATCH 2/2] Bump version --- CHANGES | 21 +++++++++++++++++++++ sphinx/__init__.py | 6 +++--- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 66271df6a..18149fed9 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,24 @@ +Release 1.7.3 (in development) +============================== + +Dependencies +------------ + +Incompatible changes +-------------------- + +Deprecated +---------- + +Features added +-------------- + +Bugs fixed +---------- + +Testing +-------- + Release 1.7.2 (released Mar 21, 2018) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index e93c6da09..67278f4c0 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.2' -__released__ = '1.7.2' # used when Sphinx builds its own docs +__version__ = '1.7.3+' +__released__ = '1.7.3' # 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, 2, 'final', 0) +version_info = (1, 7, 3, 'beta', 0) package_dir = path.abspath(path.dirname(__file__))