Updated the version to 0.10.1.

This commit is contained in:
Alex Szpakowski
2015-12-29 22:52:16 -04:00
parent ef94e43af1
commit 2cadb30ecf
6 changed files with 9 additions and 11 deletions
+3 -3
View File
@@ -25,12 +25,12 @@ namespace love
{
// Version stuff.
#define LOVE_VERSION_STRING "0.10.0"
#define LOVE_VERSION_STRING "0.10.1"
static const int VERSION_MAJOR = 0;
static const int VERSION_MINOR = 10;
static const int VERSION_REV = 0;
static const int VERSION_REV = 1;
static const char *VERSION = LOVE_VERSION_STRING;
static const char *VERSION_COMPATIBILITY[] = { VERSION, 0 };
static const char *VERSION_COMPATIBILITY[] = { VERSION, "0.10.0", 0 };
static const char *VERSION_CODENAME = "Super Toast";
} // love