From d5245483ef364b4b7340ddfead007cc02a5e127d Mon Sep 17 00:00:00 2001 From: Alex Szpakowski Date: Sun, 3 Mar 2013 19:55:37 -0400 Subject: [PATCH] Updated version to 0.9.0 (codename TBD) --- platform/macosx/Info-Framework.plist | 4 ++-- platform/macosx/love-Info.plist | 6 +++--- platform/macosx/love-framework.xcodeproj/project.pbxproj | 8 ++++---- src/common/version.h | 6 +++--- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/platform/macosx/Info-Framework.plist b/platform/macosx/Info-Framework.plist index fcc7ee4ce..2bdfccf99 100644 --- a/platform/macosx/Info-Framework.plist +++ b/platform/macosx/Info-Framework.plist @@ -17,11 +17,11 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.8.0 + 0.9.0 CFBundleSignature LoVe CFBundleVersion - 0.8.0 + 0.9.0 NSPrincipalClass diff --git a/platform/macosx/love-Info.plist b/platform/macosx/love-Info.plist index 112b95bab..5c726c5d8 100644 --- a/platform/macosx/love-Info.plist +++ b/platform/macosx/love-Info.plist @@ -13,12 +13,12 @@ LÖVE Project CFBundleTypeRole Viewer + LSHandlerRank + Owner LSItemContentTypes org.love2d.love-game - LSHandlerRank - Owner CFBundleTypeName @@ -46,7 +46,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.8.0 + 0.9.0 CFBundleSignature LoVe NSHumanReadableCopyright diff --git a/platform/macosx/love-framework.xcodeproj/project.pbxproj b/platform/macosx/love-framework.xcodeproj/project.pbxproj index 737c12d4f..dcc7a9fe6 100644 --- a/platform/macosx/love-framework.xcodeproj/project.pbxproj +++ b/platform/macosx/love-framework.xcodeproj/project.pbxproj @@ -1987,8 +1987,8 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; - DYLIB_COMPATIBILITY_VERSION = 0.8.0; - DYLIB_CURRENT_VERSION = 0.8.0; + DYLIB_COMPATIBILITY_VERSION = 9.0; + DYLIB_CURRENT_VERSION = 9.0; FRAMEWORK_VERSION = A; GCC_ENABLE_OBJC_EXCEPTIONS = YES; GCC_PREPROCESSOR_DEFINITIONS = ( @@ -2009,8 +2009,8 @@ buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DYLIB_COMPATIBILITY_VERSION = 0.8.0; - DYLIB_CURRENT_VERSION = 0.8.0; + DYLIB_COMPATIBILITY_VERSION = 9.0; + DYLIB_CURRENT_VERSION = 9.0; FRAMEWORK_VERSION = A; GCC_ENABLE_OBJC_EXCEPTIONS = YES; INFOPLIST_FILE = "Info-Framework.plist"; diff --git a/src/common/version.h b/src/common/version.h index 87e62c6da..5aa9fe8f7 100644 --- a/src/common/version.h +++ b/src/common/version.h @@ -26,11 +26,11 @@ namespace love // Version stuff. const int VERSION_MAJOR = 0; -const int VERSION_MINOR = 8; +const int VERSION_MINOR = 9; 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_CODENAME = "Rubber Piggy"; +const char *VERSION_CODENAME = ""; } // love