Updated version to 0.10.0.

--HG--
branch : minor
This commit is contained in:
Alex Szpakowski
2015-01-16 15:54:18 -04:00
parent a7e4148869
commit 1253e3aae1
4 changed files with 11 additions and 11 deletions
Binary file not shown.
+2 -2
View File
@@ -17,11 +17,11 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>FMWK</string> <string>FMWK</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>0.9.2</string> <string>0.10.0</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>LoVe</string> <string>LoVe</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>0.9.2</string> <string>0.10.0</string>
<key>NSPrincipalClass</key> <key>NSPrincipalClass</key>
<string></string> <string></string>
</dict> </dict>
+5 -5
View File
@@ -33,16 +33,16 @@
<string>None</string> <string>None</string>
</dict> </dict>
<dict> <dict>
<key>CFBundleTypeIconFile</key>
<string>Document</string>
<key>CFBundleTypeName</key> <key>CFBundleTypeName</key>
<string>Document</string> <string>Document</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleTypeOSTypes</key> <key>CFBundleTypeOSTypes</key>
<array> <array>
<string>****</string> <string>****</string>
</array> </array>
<key>CFBundleTypeIconFile</key> <key>CFBundleTypeRole</key>
<string>Document</string> <string>Editor</string>
</dict> </dict>
</array> </array>
<key>CFBundleExecutable</key> <key>CFBundleExecutable</key>
@@ -58,7 +58,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>0.9.2</string> <string>0.10.0</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>LoVe</string> <string>LoVe</string>
<key>LSApplicationCategoryType</key> <key>LSApplicationCategoryType</key>
+4 -4
View File
@@ -26,10 +26,10 @@ namespace love
// Version stuff. // Version stuff.
const int VERSION_MAJOR = 0; const int VERSION_MAJOR = 0;
const int VERSION_MINOR = 9; const int VERSION_MINOR = 10;
const int VERSION_REV = 2; const int VERSION_REV = 0;
const char *VERSION = "0.9.2"; const char *VERSION = "0.10.0";
const char *VERSION_COMPATIBILITY[] = { VERSION, "0.9.1", "0.9.0", 0 }; const char *VERSION_COMPATIBILITY[] = { VERSION, 0 };
const char *VERSION_CODENAME = "Baby Inspector"; const char *VERSION_CODENAME = "Baby Inspector";
} // love } // love