diff --git a/autogen/lua_definitions/constants.lua b/autogen/lua_definitions/constants.lua index d43bf66f..ee960c0d 100644 --- a/autogen/lua_definitions/constants.lua +++ b/autogen/lua_definitions/constants.lua @@ -11529,3 +11529,9 @@ MINOR_VERSION_NUMBER = 0 --- @type integer PATCH_VERSION_NUMBER = 0 + +--- @type integer +VERSION_NUMBER = 34 + +--- @type string +VERSION_TEXT = "beta" diff --git a/docs/lua/constants.md b/docs/lua/constants.md index a2977394..a7b85f2a 100644 --- a/docs/lua/constants.md +++ b/docs/lua/constants.md @@ -4092,7 +4092,10 @@ ## [version.h](#version.h) - MAX_LOCAL_VERSION_LENGTH - MAX_VERSION_LENGTH +- MINOR_VERSION_NUMBER - PATCH_VERSION_NUMBER +- VERSION_NUMBER +- VERSION_TEXT [:arrow_up_small:](#) diff --git a/src/pc/lua/smlua_constants_autogen.c b/src/pc/lua/smlua_constants_autogen.c index 1bed54bc..0e52988f 100644 --- a/src/pc/lua/smlua_constants_autogen.c +++ b/src/pc/lua/smlua_constants_autogen.c @@ -4015,6 +4015,9 @@ char gSmluaConstants[] = "" "COOP_OBJ_FLAG_LUA = (1 << 1)\n" "COOP_OBJ_FLAG_NON_SYNC = (1 << 2)\n" "COOP_OBJ_FLAG_INITIALIZED = (1 << 3)\n" +"VERSION_TEXT = 'beta'\n" +"VERSION_NUMBER = 34\n" +"MINOR_VERSION_NUMBER = 0\n" "PATCH_VERSION_NUMBER = 0\n" "MAX_VERSION_LENGTH = 28\n" "MAX_LOCAL_VERSION_LENGTH = 32\n"