post-release version bump to 1.5.0-dev

This commit is contained in:
Honza Král
2015-02-11 22:24:57 +01:00
parent cdb04dfa01
commit 2f9842abed
4 changed files with 7 additions and 4 deletions
+3
View File
@@ -3,6 +3,9 @@
Changelog
=========
1.5.0 (dev)
-----------
1.4.0 (2015-02-11)
------------------
+2 -2
View File
@@ -50,9 +50,9 @@ copyright = u'2013, Honza Král'
# built documents.
#
# The short X.Y version.
version = '1.4.0'
version = '1.5.0'
# The full version, including alpha/beta/rc tags.
release = '1.4.0'
release = '1.5.0-dev'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
+1 -1
View File
@@ -1,6 +1,6 @@
from __future__ import absolute_import
VERSION = (1, 4, 0)
VERSION = (1, 5, 0, 'dev')
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
+1 -1
View File
@@ -4,7 +4,7 @@ from setuptools import setup, find_packages
import sys
import os
VERSION = (1, 4, 0)
VERSION = (1, 5, 0, 'dev')
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))