diff --git a/extra/windows/love.rc b/extra/windows/love.rc
index 8b5d9fb92..8493de94e 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 9ac7b9f46..d2104642e 100644
--- a/platform/macosx/Info-Framework.plist
+++ b/platform/macosx/Info-Framework.plist
@@ -17,11 +17,11 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 0.9.1
+ 0.9.2
CFBundleSignature
LoVe
CFBundleVersion
- 0.9.1
+ 0.9.2
NSPrincipalClass
diff --git a/platform/macosx/love-Info.plist b/platform/macosx/love-Info.plist
index c7585e930..3dbad5b89 100644
--- a/platform/macosx/love-Info.plist
+++ b/platform/macosx/love-Info.plist
@@ -46,7 +46,7 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 0.9.1
+ 0.9.2
CFBundleSignature
LoVe
LSApplicationCategoryType
diff --git a/src/common/version.h b/src/common/version.h
index 5e3e15f72..68b5f6b9d 100644
--- a/src/common/version.h
+++ b/src/common/version.h
@@ -27,9 +27,9 @@ namespace love
// Version stuff.
const int VERSION_MAJOR = 0;
const int VERSION_MINOR = 9;
-const int VERSION_REV = 1;
-const char *VERSION = "0.9.1";
-const char *VERSION_COMPATIBILITY[] = { VERSION, "0.9.0", 0 };
+const int VERSION_REV = 2;
+const char *VERSION = "0.9.2";
+const char *VERSION_COMPATIBILITY[] = { VERSION, "0.9.1", "0.9.0", 0 };
const char *VERSION_CODENAME = "Baby Inspector";
} // love