update version

This commit is contained in:
Sasha Szpakowski
2023-04-15 09:37:22 -03:00
parent c849f71d14
commit 78e7c44424
7 changed files with 15 additions and 15 deletions
+3 -3
View File
@@ -25,12 +25,12 @@ namespace love
{
// Version stuff.
#define LOVE_VERSION_STRING "11.4"
#define LOVE_VERSION_STRING "11.5"
static const int VERSION_MAJOR = 11;
static const int VERSION_MINOR = 4;
static const int VERSION_MINOR = 5;
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", "11.3", 0 };
static const char *VERSION_COMPATIBILITY[] = { VERSION, "11.0", "11.1", "11.2", "11.3", "11.4", 0 };
static const char *VERSION_CODENAME = "Mysterious Mysteries";
} // love