From 8fcc1b84481d7c9eef2f90e433cb1c5971f628b2 Mon Sep 17 00:00:00 2001 From: Oliver Date: Fri, 13 Sep 2019 15:54:12 +1000 Subject: [PATCH] Update version.py Bumped to v0.0.6 --- InvenTree/InvenTree/version.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/InvenTree/InvenTree/version.py b/InvenTree/InvenTree/version.py index 1766168a30..0bb8a82d6f 100644 --- a/InvenTree/InvenTree/version.py +++ b/InvenTree/InvenTree/version.py @@ -4,7 +4,7 @@ Provides information on the current InvenTree version import subprocess -INVENTREE_SW_VERSION = "0.0.5" +INVENTREE_SW_VERSION = "0.0.6" def inventreeVersion(): @@ -15,7 +15,6 @@ def inventreeVersion(): def inventreeCommitHash(): """ Returns the git commit hash for the running codebase """ - # TODO - This doesn't seem to work when running under gunicorn. Why is this?! commit = str(subprocess.check_output('git rev-parse --short HEAD'.split()), 'utf-8').strip() return commit