From 5624fb14905da353f9f9d01e44f6010186c6565f Mon Sep 17 00:00:00 2001 From: prculley Date: Fri, 10 Jan 2020 11:43:58 -0600 Subject: [PATCH] Bump to v5.1.3 --- gramps/gen/const.py | 2 +- gramps/gui/grampsgui.py | 2 +- gramps/version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gramps/gen/const.py b/gramps/gen/const.py index e6a68acfe..aff4a22d1 100644 --- a/gramps/gen/const.py +++ b/gramps/gen/const.py @@ -145,7 +145,7 @@ sys.path.insert(0, ROOT_DIR) git_revision = get_git_revision(ROOT_DIR).replace('\n', '') if sys.platform == 'win32' and git_revision == "": git_revision = get_git_revision(os.path.split(ROOT_DIR)[1]) -#VERSION += git_revision +VERSION += git_revision #VERSION += "-1" # diff --git a/gramps/gui/grampsgui.py b/gramps/gui/grampsgui.py index 5691480f0..1b603fdcf 100644 --- a/gramps/gui/grampsgui.py +++ b/gramps/gui/grampsgui.py @@ -490,7 +490,7 @@ def _display_welcome_message(parent=None): Display a welcome message to the user. (This docstring seems very legacy/historical, not accurate.) """ - #_display_generic_message("master", 'behavior.betawarn', parent=parent) + _display_generic_message("master", 'behavior.betawarn', parent=parent) def _display_generic_message(warning_type, config_key, parent=None): """ diff --git a/gramps/version.py b/gramps/version.py index 286af3c40..76caf258e 100644 --- a/gramps/version.py +++ b/gramps/version.py @@ -18,7 +18,7 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -VERSION_TUPLE = (5, 1, 2) +VERSION_TUPLE = (5, 1, 3) VERSION_QUALIFIER = "" VERSION = '.'.join(map(str,VERSION_TUPLE)) + VERSION_QUALIFIER major_version = "%s.%s" % (VERSION_TUPLE[0], VERSION_TUPLE[1])