Bump version

This commit is contained in:
Takeshi KOMIYA
2016-11-06 22:14:55 +09:00
parent 138edcdeb4
commit 2580fb5694
2 changed files with 15 additions and 3 deletions

12
CHANGES
View File

@@ -1,3 +1,15 @@
Release 1.5 beta2 (in development)
==================================
Incompatible changes
--------------------
Features added
--------------
Bugs fixed
----------
Release 1.5 beta1 (released Nov 6, 2016)
========================================

View File

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