Correcting version number

This commit is contained in:
tomas
2006-06-08 18:06:18 +00:00
parent c182bab5f9
commit e10a4bc816
2 changed files with 4 additions and 4 deletions

View File

@@ -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)

View File

@@ -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 <errno.h>
@@ -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);
}