bump to '4.0.4'

This commit is contained in:
Jérôme Rapinat 2014-01-27 16:44:27 +01:00
parent 828a14c43e
commit 179ae142fa
2 changed files with 3 additions and 3 deletions

View File

@ -145,8 +145,8 @@ if sys.version_info[0] < 3:
ROOT_DIR = os.path.abspath(os.path.join(os.path.dirname(
unicode(__file__, sys.getfilesystemencoding())), os.pardir))
#VERSION += get_git_revision(ROOT_DIR)
VERSION += "-1"
VERSION += get_git_revision(ROOT_DIR)
#VERSION += "-1"
#
# Glade files

View File

@ -20,6 +20,6 @@
# $Id$
VERSION_TUPLE = (4, 0, 3)
VERSION_TUPLE = (4, 0, 4)
VERSION = '.'.join(map(str,VERSION_TUPLE))
major_version = "%s.%s" % (VERSION_TUPLE[0], VERSION_TUPLE[1])