Update version

This commit is contained in:
Alex Szpakowski
2020-12-24 12:45:08 -04:00
parent 9e460ba53e
commit 90bd8f1811
9 changed files with 17 additions and 8 deletions
+3 -3
View File
@@ -25,12 +25,12 @@ namespace love
{
// Version stuff.
#define LOVE_VERSION_STRING "11.3"
#define LOVE_VERSION_STRING "11.4"
static const int VERSION_MAJOR = 11;
static const int VERSION_MINOR = 3;
static const int VERSION_MINOR = 4;
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_COMPATIBILITY[] = { VERSION, "11.0", "11.1", "11.2", "11.3", 0 };
static const char *VERSION_CODENAME = "Mysterious Mysteries";
} // love