Correction on release number on module (VERSION).

This commit is contained in:
Tomás Guisasola 2019-06-14 10:54:41 -03:00
parent 977323dedc
commit 5496d60185

View File

@ -128,6 +128,6 @@ LUASQL_API void luasql_set_info (lua_State *L) {
lua_pushliteral (L, "LuaSQL is a simple interface from Lua to a DBMS"); lua_pushliteral (L, "LuaSQL is a simple interface from Lua to a DBMS");
lua_settable (L, -3); lua_settable (L, -3);
lua_pushliteral (L, "_VERSION"); lua_pushliteral (L, "_VERSION");
lua_pushliteral (L, "LuaSQL 2.4.1 (for "LUA_VERSION")"); lua_pushliteral (L, "LuaSQL 2.5.0 (for "LUA_VERSION")");
lua_settable (L, -3); lua_settable (L, -3);
} }