Bump to 1.5.6 final

This commit is contained in:
Takeshi KOMIYA 2017-05-15 00:14:00 +09:00
parent 1329202502
commit f27d9447e0
2 changed files with 4 additions and 16 deletions

16
CHANGES
View File

@ -1,14 +1,5 @@
Release 1.5.6 (in development)
==============================
Incompatible changes
--------------------
Deprecated
----------
Features added
--------------
Release 1.5.6 (released May 15, 2017)
=====================================
Bugs fixed
----------
@ -27,9 +18,6 @@ Bugs fixed
* #3320: Warning about reference target not being found for container types
* Misspelled ARCHIVEPREFIX in Makefile for latex build repertory
Testing
--------
Release 1.5.5 (released Apr 03, 2017)
=====================================

View File

@ -30,13 +30,13 @@ if 'PYTHONWARNINGS' not in os.environ:
warnings.filterwarnings('ignore', "'U' mode is deprecated",
DeprecationWarning, module='docutils.io')
__version__ = '1.5.6+'
__version__ = '1.5.6'
__released__ = '1.5.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, 5, 6, 'beta', 0)
version_info = (1, 5, 6, 'final', 0)
package_dir = path.abspath(path.dirname(__file__))