diff --git a/extra/windows/love.rc b/extra/windows/love.rc index 39a49950f..72ed26617 100644 Binary files a/extra/windows/love.rc and b/extra/windows/love.rc differ diff --git a/platform/xcode/ios/love-ios.plist b/platform/xcode/ios/love-ios.plist index ca19c382d..1fc317e53 100644 --- a/platform/xcode/ios/love-ios.plist +++ b/platform/xcode/ios/love-ios.plist @@ -40,7 +40,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.10.1 + 0.10.2 CFBundleSignature ???? CFBundleVersion diff --git a/platform/xcode/macosx/love-macosx.plist b/platform/xcode/macosx/love-macosx.plist index b5a9adf0e..191bbf1ab 100644 --- a/platform/xcode/macosx/love-macosx.plist +++ b/platform/xcode/macosx/love-macosx.plist @@ -56,7 +56,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.10.1 + 0.10.2 CFBundleSignature LoVe LSApplicationCategoryType diff --git a/src/common/version.h b/src/common/version.h index be23de43a..783445e4e 100644 --- a/src/common/version.h +++ b/src/common/version.h @@ -25,12 +25,12 @@ namespace love { // Version stuff. -#define LOVE_VERSION_STRING "0.10.1" +#define LOVE_VERSION_STRING "0.10.2" static const int VERSION_MAJOR = 0; static const int VERSION_MINOR = 10; -static const int VERSION_REV = 1; +static const int VERSION_REV = 2; static const char *VERSION = LOVE_VERSION_STRING; -static const char *VERSION_COMPATIBILITY[] = { VERSION, "0.10.0", 0 }; +static const char *VERSION_COMPATIBILITY[] = { VERSION, "0.10.1", "0.10.0", 0 }; static const char *VERSION_CODENAME = "Super Toast"; } // love