Skip to content

Commit 5da424d

Browse files
committed
chore: fast forward Lua54.cs to Lua5.4.7
1 parent 90d80a7 commit 5da424d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Lua54.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,14 +132,14 @@ public struct luaL_Buffer {
132132

133133
public const string LUA_VERSION_MAJOR = "5";
134134
public const string LUA_VERSION_MINOR = "4";
135-
public const string LUA_VERSION_RELEASE = "6";
135+
public const string LUA_VERSION_RELEASE = "7";
136136

137137
public const int LUA_VERSION_NUM = 504;
138-
public const int LUA_VERSION_RELEASE_NUM = LUA_VERSION_NUM * 100 + 6;
138+
public const int LUA_VERSION_RELEASE_NUM = LUA_VERSION_NUM * 100 + 7;
139139

140140
public const string LUA_VERSION = "Lua " + LUA_VERSION_MAJOR + "." + LUA_VERSION_MINOR;
141141
public const string LUA_RELEASE = LUA_VERSION + "." + LUA_VERSION_RELEASE;
142-
public const string LUA_COPYRIGHT = LUA_RELEASE + " Copyright (C) 1994-2023 Lua.org, PUC-Rio";
142+
public const string LUA_COPYRIGHT = LUA_RELEASE + " Copyright (C) 1994-2024 Lua.org, PUC-Rio";
143143
public const string LUA_AUTHORS = "R. Ierusalimschy, L. H. de Figueiredo, W. Celes";
144144

145145
public const string LUA_SIGNATURE = "\x1bLua";

0 commit comments

Comments
 (0)