Update version to 11.2

This commit is contained in:
Alex Szpakowski
2018-10-28 13:52:09 -03:00
parent 40febe0a81
commit da23448efe
8 changed files with 9 additions and 9 deletions
+3 -3
View File
@@ -25,12 +25,12 @@ namespace love
{
// Version stuff.
#define LOVE_VERSION_STRING "11.1"
#define LOVE_VERSION_STRING "11.2"
static const int VERSION_MAJOR = 11;
static const int VERSION_MINOR = 1;
static const int VERSION_MINOR = 2;
static const int VERSION_REV = 0;
static const char *VERSION = LOVE_VERSION_STRING;
static const char *VERSION_COMPATIBILITY[] = { VERSION, "11.0", 0 };
static const char *VERSION_COMPATIBILITY[] = { VERSION, "11.0", "11.1", 0 };
static const char *VERSION_CODENAME = "Mysterious Mysteries";
} // love