Browse Source

Updated version to 0.10.0.

--HG--
branch : minor
Alex Szpakowski 10 years ago
parent
commit
1253e3aae1

BIN
extra/windows/love.rc


+ 2 - 2
platform/macosx/Info-Framework.plist

@@ -17,11 +17,11 @@
 	<key>CFBundlePackageType</key>
 	<string>FMWK</string>
 	<key>CFBundleShortVersionString</key>
-	<string>0.9.2</string>
+	<string>0.10.0</string>
 	<key>CFBundleSignature</key>
 	<string>LoVe</string>
 	<key>CFBundleVersion</key>
-	<string>0.9.2</string>
+	<string>0.10.0</string>
 	<key>NSPrincipalClass</key>
 	<string></string>
 </dict>

+ 5 - 5
platform/macosx/love-Info.plist

@@ -33,16 +33,16 @@
 			<string>None</string>
 		</dict>
 		<dict>
+			<key>CFBundleTypeIconFile</key>
+			<string>Document</string>
 			<key>CFBundleTypeName</key>
 			<string>Document</string>
-			<key>CFBundleTypeRole</key>
-			<string>Editor</string>
 			<key>CFBundleTypeOSTypes</key>
 			<array>
 				<string>****</string>
 			</array>
-			<key>CFBundleTypeIconFile</key>
-			<string>Document</string>
+			<key>CFBundleTypeRole</key>
+			<string>Editor</string>
 		</dict>
 	</array>
 	<key>CFBundleExecutable</key>
@@ -58,7 +58,7 @@
 	<key>CFBundlePackageType</key>
 	<string>APPL</string>
 	<key>CFBundleShortVersionString</key>
-	<string>0.9.2</string>
+	<string>0.10.0</string>
 	<key>CFBundleSignature</key>
 	<string>LoVe</string>
 	<key>LSApplicationCategoryType</key>

+ 4 - 4
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