Update version to 12.0

--HG--
branch : minor
This commit is contained in:
Alex Szpakowski
2019-12-23 17:17:51 -04:00
parent 3a61663509
commit 157d7637ed
9 changed files with 17 additions and 11 deletions
+5 -5
View File
@@ -25,13 +25,13 @@ namespace love
{
// Version stuff.
#define LOVE_VERSION_STRING "11.3"
static const int VERSION_MAJOR = 11;
static const int VERSION_MINOR = 3;
#define LOVE_VERSION_STRING "12.0"
static const int VERSION_MAJOR = 12;
static const int VERSION_MINOR = 0;
static const int VERSION_REV = 0;
static const char *VERSION = LOVE_VERSION_STRING;
static const char *VERSION_COMPATIBILITY[] = { VERSION, "11.0", "11.1", "11.2", 0 };
static const char *VERSION_CODENAME = "Mysterious Mysteries";
static const char *VERSION_COMPATIBILITY[] = { VERSION, 0 };
static const char *VERSION_CODENAME = "";
} // love