From 179ae142fa18f14ca9c8c2b7c4fbd7709f776480 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Mon, 27 Jan 2014 16:44:27 +0100 Subject: [PATCH] bump to '4.0.4' --- gramps/gen/const.py | 4 ++-- gramps/version.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gramps/gen/const.py b/gramps/gen/const.py index 57e04ff9a..ab2372022 100644 --- a/gramps/gen/const.py +++ b/gramps/gen/const.py @@ -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 diff --git a/gramps/version.py b/gramps/version.py index f4a6427c7..aa6872dd6 100644 --- a/gramps/version.py +++ b/gramps/version.py @@ -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])