Bump version: 0.1.4 → 0.1.5

master
baztian 2015-03-02 14:04:09 +01:00
parent 46faba8de0
commit 9d4a24e919
4 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,5 @@
[bumpversion] [bumpversion]
current_version = 0.1.4 current_version = 0.1.5
commit = True commit = True
tag = True tag = True

View File

@ -153,6 +153,7 @@ Changelog
========= =========
- Next version - unreleased - Next version - unreleased
- 0.1.5 - 2015-03-02
- Add version number to module. - Add version number to module.

View File

@ -30,7 +30,7 @@ print find_packages('src')
setup( setup(
#basic package data #basic package data
name = 'JayDeBeApi', name = 'JayDeBeApi',
version = '0.1.4', version = '0.1.5',
author = 'Bastian Bowe', author = 'Bastian Bowe',
author_email = 'bastian.dev@gmail.com', author_email = 'bastian.dev@gmail.com',
license = 'GNU LGPL', license = 'GNU LGPL',

View File

@ -17,7 +17,7 @@
# License along with JayDeBeApi. If not, see # License along with JayDeBeApi. If not, see
# <http://www.gnu.org/licenses/>. # <http://www.gnu.org/licenses/>.
__version_info__ = (0, 1, 4) __version_info__ = (0, 1, 5)
__version__ = ".".join(str(i) for i in __version_info__) __version__ = ".".join(str(i) for i in __version_info__)
import datetime import datetime