diff --git a/extra/windows/love.rc b/extra/windows/love.rc index 16030396f..8fd682913 100644 Binary files a/extra/windows/love.rc and b/extra/windows/love.rc differ diff --git a/platform/macosx/Info-Framework.plist b/platform/macosx/Info-Framework.plist index d2104642e..437894a5f 100644 --- a/platform/macosx/Info-Framework.plist +++ b/platform/macosx/Info-Framework.plist @@ -17,11 +17,11 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.9.2 + 0.10.0 CFBundleSignature LoVe CFBundleVersion - 0.9.2 + 0.10.0 NSPrincipalClass diff --git a/platform/macosx/love-Info.plist b/platform/macosx/love-Info.plist index 215e9069c..b84b0ead4 100644 --- a/platform/macosx/love-Info.plist +++ b/platform/macosx/love-Info.plist @@ -33,16 +33,16 @@ None + CFBundleTypeIconFile + Document CFBundleTypeName Document - CFBundleTypeRole - Editor CFBundleTypeOSTypes **** - CFBundleTypeIconFile - Document + CFBundleTypeRole + Editor CFBundleExecutable @@ -58,7 +58,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.9.2 + 0.10.0 CFBundleSignature LoVe LSApplicationCategoryType diff --git a/src/common/version.h b/src/common/version.h index ba4b15259..6bae8a663 100644 --- a/src/common/version.h +++ b/src/common/version.h @@ -26,10 +26,10 @@ namespace love // Version stuff. const int VERSION_MAJOR = 0; -const int VERSION_MINOR = 9; -const int VERSION_REV = 2; -const char *VERSION = "0.9.2"; -const char *VERSION_COMPATIBILITY[] = { VERSION, "0.9.1", "0.9.0", 0 }; +const int VERSION_MINOR = 10; +const int VERSION_REV = 0; +const char *VERSION = "0.10.0"; +const char *VERSION_COMPATIBILITY[] = { VERSION, 0 }; const char *VERSION_CODENAME = "Baby Inspector"; } // love