New version (bug-fix).

master
Tomás Guisasola 2019-06-14 09:51:43 -03:00
parent 1610866be2
commit fe6d9a081a
1 changed files with 2 additions and 2 deletions

View File

@ -122,12 +122,12 @@ LUASQL_API void luasql_setmeta (lua_State *L, const char *name) {
*/
LUASQL_API void luasql_set_info (lua_State *L) {
lua_pushliteral (L, "_COPYRIGHT");
lua_pushliteral (L, "Copyright (C) 2003-2017 Kepler Project");
lua_pushliteral (L, "Copyright (C) 2003-2019 Kepler Project");
lua_settable (L, -3);
lua_pushliteral (L, "_DESCRIPTION");
lua_pushliteral (L, "LuaSQL is a simple interface from Lua to a DBMS");
lua_settable (L, -3);
lua_pushliteral (L, "_VERSION");
lua_pushliteral (L, "LuaSQL 2.3.5 (for "LUA_VERSION")");
lua_pushliteral (L, "LuaSQL 2.4.1 (for "LUA_VERSION")");
lua_settable (L, -3);
}