From 82926a72edd9de0204dcf48d280fb3433dbe05f1 Mon Sep 17 00:00:00 2001 From: tuler Date: Thu, 9 Jun 2005 16:22:37 +0000 Subject: version update --- src/lfs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lfs.c b/src/lfs.c index c39e296..54df4ce 100644 --- a/src/lfs.c +++ b/src/lfs.c @@ -11,7 +11,7 @@ ** lfs.touch (filepath [, atime [, mtime]]) ** lfs.unlock (fh) ** -** $Id: lfs.c,v 1.22 2005/06/03 21:50:59 tuler Exp $ +** $Id: lfs.c,v 1.23 2005/06/09 16:22:37 tuler Exp $ */ #include @@ -516,7 +516,7 @@ static int file_info (lua_State *L) { */ static void set_info (lua_State *L) { lua_pushliteral (L, "_COPYRIGHT"); - lua_pushliteral (L, "Copyright (C) 2004-2005 Kepler Project"); + lua_pushliteral (L, "Copyright (C) 2003-2005 Kepler Project"); lua_settable (L, -3); lua_pushliteral (L, "_DESCRIPTION"); 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"); @@ -525,7 +525,7 @@ static void set_info (lua_State *L) { lua_pushliteral (L, "LuaFileSystem"); lua_settable (L, -3); lua_pushliteral (L, "_VERSION"); - lua_pushliteral (L, "1.1"); + lua_pushliteral (L, "1.2"); lua_settable (L, -3); } -- cgit v1.2.3-55-g6feb