Bump to v5.1.3

This commit is contained in:
prculley 2020-01-10 11:43:58 -06:00
parent 32c700c6bf
commit 5624fb1490
3 changed files with 3 additions and 3 deletions

View File

@ -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"
#

View File

@ -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):
"""

View File

@ -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])