diff --git a/Makefile b/Makefile index ffbcd81..2c11b58 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ -# $Id: Makefile,v 1.27 2006/06/08 16:23:25 tomas Exp $ +# $Id: Makefile,v 1.28 2006/06/08 18:06:18 tomas Exp $ T= lfs -V= 1.2 +V= 1.2.1 CONFIG= ./config include $(CONFIG) diff --git a/src/lfs.c b/src/lfs.c index 068fd7f..43d5e9e 100644 --- a/src/lfs.c +++ b/src/lfs.c @@ -14,7 +14,7 @@ ** lfs.touch (filepath [, atime [, mtime]]) ** lfs.unlock (fh) ** -** $Id: lfs.c,v 1.33 2006/06/08 16:16:23 tomas Exp $ +** $Id: lfs.c,v 1.34 2006/06/08 18:06:18 tomas Exp $ */ #include @@ -564,7 +564,7 @@ static void set_info (lua_State *L) { lua_pushliteral (L, "LuaFileSystem is a Lua library developed to complement the set of functions related to file systems offered by the standard Lua distribution"); lua_settable (L, -3); lua_pushliteral (L, "_VERSION"); - lua_pushliteral (L, "LuaFileSystem 1.2"); + lua_pushliteral (L, "LuaFileSystem 1.2.1"); lua_settable (L, -3); }