bump to 4.1.3

This commit is contained in:
Jérôme Rapinat 2015-02-27 17:11:59 +01:00
parent cf88fef1e8
commit 3e5a7fe970
2 changed files with 3 additions and 3 deletions

View File

@ -134,8 +134,8 @@ sys.path.insert(0, ROOT_DIR)
git_revision = get_git_revision(ROOT_DIR) git_revision = get_git_revision(ROOT_DIR)
if sys.platform == 'win32' and git_revision == "": if sys.platform == 'win32' and git_revision == "":
git_revision = get_git_revision(os.path.split(ROOT_DIR)[1]) git_revision = get_git_revision(os.path.split(ROOT_DIR)[1])
#VERSION += git_revision VERSION += git_revision
VERSION += "-1" #VERSION += "-1"
# #
# Glade files # Glade files

View File

@ -18,6 +18,6 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
# #
VERSION_TUPLE = (4, 1, 2) VERSION_TUPLE = (4, 1, 3)
VERSION = '.'.join(map(str,VERSION_TUPLE)) VERSION = '.'.join(map(str,VERSION_TUPLE))
major_version = "%s.%s" % (VERSION_TUPLE[0], VERSION_TUPLE[1]) major_version = "%s.%s" % (VERSION_TUPLE[0], VERSION_TUPLE[1])