Skip to content
This repository has been archived by the owner on Oct 7, 2021. It is now read-only.

Commit

Permalink
update version number 3.3.1 hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
miquelcampos committed Dec 13, 2019
1 parent 216efc6 commit 98dc139
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ maya.SetupMscver()
env = excons.MakeBaseEnv()


version = (3, 3, 0)
version = (3, 3, 1)
versionstr = "%d.%d.%d" % version
platname = {"win32": "windows", "darwin": "osx"}.get(sys.platform, "linux")
outprefix = "platforms/%s/%s/%s/plug-ins" % (maya.Version(nice=True), platname, excons.arch_dir)
Expand Down
2 changes: 1 addition & 1 deletion excons
Submodule excons updated 2 files
+2 −0 cmake.py
+2 −1 tools/maya.py
2 changes: 1 addition & 1 deletion framework/scripts/mgear/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
sev_comment = 32

# gear version
VERSION = [3, 3, 0]
VERSION = [3, 3, 1]

self = sys.modules[__name__]
self.menu_id = None
Expand Down
2 changes: 1 addition & 1 deletion framework/scripts/mgear/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

VERSION_MAJOR = 3
VERSION_MINOR = 3
VERSION_PATCH = 0
VERSION_PATCH = 1

version_info = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH)
version = '%i.%i.%i' % version_info
Expand Down
4 changes: 2 additions & 2 deletions mgear.status
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MGEAR_VERSION [3, 3, 0]
MGEAR_VERSION [3, 3, 1]
MGEAR_VERSION_MINOR 3
MGEAR_MAJMIN_VERSION 3.3
MGEAR_VERSION_MAJOR 3
MGEAR_VERSION_PATCH 0
MGEAR_VERSION_PATCH 1

0 comments on commit 98dc139

Please sign in to comment.