diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2016-08-03 17:55:50 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2016-08-03 17:59:01 +0200 |
commit | c439a6188c0c48b1a9d1244ce3c4746678ee6f7c (patch) | |
tree | 8cdb4d58a64433f4bdb29a282c03f2c17d0738d7 | |
parent | edaf1661e45076746ac140bf582f39fcf74cf7ad (diff) |
Bump version to 2.2-alpha
There are now new developments that will not be in 2.1-stable
-rwxr-xr-x | tools/Godot.app/Contents/Info.plist | 4 | ||||
-rw-r--r-- | version.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tools/Godot.app/Contents/Info.plist b/tools/Godot.app/Contents/Info.plist index 37c80fc8a3..2a3e727133 100755 --- a/tools/Godot.app/Contents/Info.plist +++ b/tools/Godot.app/Contents/Info.plist @@ -19,11 +19,11 @@ <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleShortVersionString</key> - <string>2.1-dev</string> + <string>2.2-dev</string> <key>CFBundleSignature</key> <string>godot</string> <key>CFBundleVersion</key> - <string>2.1-dev</string> + <string>2.2-dev</string> <key>NSHumanReadableCopyright</key> <string>© 2007-2016 Juan Linietsky, Ariel Manzur</string> <key>LSMinimumSystemVersion</key> diff --git a/version.py b/version.py index 19ff05f715..bf1d33c1cf 100644 --- a/version.py +++ b/version.py @@ -1,5 +1,5 @@ short_name="godot" name="Godot Engine" major=2 -minor=1 -status="rc1" +minor=2 +status="alpha" |