Updated version to 0.9.0 (codename TBD)

This commit is contained in:
Alex Szpakowski
2013-03-03 19:55:37 -04:00
parent 22c514e53a
commit d5245483ef
4 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -17,11 +17,11 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>FMWK</string> <string>FMWK</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>0.8.0</string> <string>0.9.0</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>LoVe</string> <string>LoVe</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>0.8.0</string> <string>0.9.0</string>
<key>NSPrincipalClass</key> <key>NSPrincipalClass</key>
<string></string> <string></string>
</dict> </dict>
+3 -3
View File
@@ -13,12 +13,12 @@
<string>LÖVE Project</string> <string>LÖVE Project</string>
<key>CFBundleTypeRole</key> <key>CFBundleTypeRole</key>
<string>Viewer</string> <string>Viewer</string>
<key>LSHandlerRank</key>
<string>Owner</string>
<key>LSItemContentTypes</key> <key>LSItemContentTypes</key>
<array> <array>
<string>org.love2d.love-game</string> <string>org.love2d.love-game</string>
</array> </array>
<key>LSHandlerRank</key>
<string>Owner</string>
</dict> </dict>
<dict> <dict>
<key>CFBundleTypeName</key> <key>CFBundleTypeName</key>
@@ -46,7 +46,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>0.8.0</string> <string>0.9.0</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>LoVe</string> <string>LoVe</string>
<key>NSHumanReadableCopyright</key> <key>NSHumanReadableCopyright</key>
@@ -1987,8 +1987,8 @@
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
buildSettings = { buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO; ALWAYS_SEARCH_USER_PATHS = NO;
DYLIB_COMPATIBILITY_VERSION = 0.8.0; DYLIB_COMPATIBILITY_VERSION = 9.0;
DYLIB_CURRENT_VERSION = 0.8.0; DYLIB_CURRENT_VERSION = 9.0;
FRAMEWORK_VERSION = A; FRAMEWORK_VERSION = A;
GCC_ENABLE_OBJC_EXCEPTIONS = YES; GCC_ENABLE_OBJC_EXCEPTIONS = YES;
GCC_PREPROCESSOR_DEFINITIONS = ( GCC_PREPROCESSOR_DEFINITIONS = (
@@ -2009,8 +2009,8 @@
buildSettings = { buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO; ALWAYS_SEARCH_USER_PATHS = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DYLIB_COMPATIBILITY_VERSION = 0.8.0; DYLIB_COMPATIBILITY_VERSION = 9.0;
DYLIB_CURRENT_VERSION = 0.8.0; DYLIB_CURRENT_VERSION = 9.0;
FRAMEWORK_VERSION = A; FRAMEWORK_VERSION = A;
GCC_ENABLE_OBJC_EXCEPTIONS = YES; GCC_ENABLE_OBJC_EXCEPTIONS = YES;
INFOPLIST_FILE = "Info-Framework.plist"; INFOPLIST_FILE = "Info-Framework.plist";
+3 -3
View File
@@ -26,11 +26,11 @@ namespace love
// Version stuff. // Version stuff.
const int VERSION_MAJOR = 0; const int VERSION_MAJOR = 0;
const int VERSION_MINOR = 8; const int VERSION_MINOR = 9;
const int VERSION_REV = 0; const int VERSION_REV = 0;
const char *VERSION = "0.8.0"; const char *VERSION = "0.9.0";
const char *VERSION_COMPATIBILITY[] = { VERSION, 0 }; const char *VERSION_COMPATIBILITY[] = { VERSION, 0 };
const char *VERSION_CODENAME = "Rubber Piggy"; const char *VERSION_CODENAME = "";
} // love } // love