Bump version

This commit is contained in:
Takeshi KOMIYA
2016-10-17 21:35:12 +09:00
parent 65e37eefb3
commit 9b1b9ce65b
2 changed files with 16 additions and 3 deletions

13
CHANGES
View File

@@ -1,3 +1,16 @@
Release 1.5 alpha3 (in development)
===================================
Incompatible changes
--------------------
Features added
--------------
Bugs fixed
----------
Release 1.5 alpha2 (released Oct 17, 2016)
==========================================

View File

@@ -15,13 +15,13 @@
import sys
from os import path
__version__ = '1.5a2'
__released__ = '1.5a2' # used when Sphinx builds its own docs
__version__ = '1.5a3'
__released__ = '1.5a3' # 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, 0, 'alpha', 2)
version_info = (1, 5, 0, 'alpha', 3)
package_dir = path.abspath(path.dirname(__file__))