Bump to 1.7.2 final

This commit is contained in:
Takeshi KOMIYA
2018-03-21 21:03:54 +09:00
parent ce3019821b
commit d029b3d5c9
2 changed files with 4 additions and 16 deletions

16
CHANGES
View File

@@ -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)
=====================================

View File

@@ -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__))