aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortomas <tomas>2005-04-08 18:57:11 +0000
committertomas <tomas>2005-04-08 18:57:11 +0000
commitf22a37da92fd83ed1ffb0d617e3a18c604fd440b (patch)
tree54195ae9c193e947c2c3e86e9318fc715832b258 /src
parentbb0cb1f342a7a5cfe700c5dcf81c24ff4a87d67e (diff)
downloadluafilesystem-f22a37da92fd83ed1ffb0d617e3a18c604fd440b.tar.gz
luafilesystem-f22a37da92fd83ed1ffb0d617e3a18c604fd440b.tar.bz2
luafilesystem-f22a37da92fd83ed1ffb0d617e3a18c604fd440b.zip
Upgrading version number.
Diffstat (limited to 'src')
-rw-r--r--src/lfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lfs.c b/src/lfs.c
index 8485ae1..e11aea7 100644
--- a/src/lfs.c
+++ b/src/lfs.c
@@ -10,7 +10,7 @@
10** lfs.touch (filepath [, atime [, mtime]]) 10** lfs.touch (filepath [, atime [, mtime]])
11** lfs.unlock (fh) 11** lfs.unlock (fh)
12** 12**
13** $Id: lfs.c,v 1.19 2005/01/24 10:19:49 tuler Exp $ 13** $Id: lfs.c,v 1.20 2005/04/08 18:57:11 tomas Exp $
14*/ 14*/
15 15
16#include <errno.h> 16#include <errno.h>
@@ -507,7 +507,7 @@ static void set_info (lua_State *L) {
507 lua_pushliteral (L, "LuaFileSystem"); 507 lua_pushliteral (L, "LuaFileSystem");
508 lua_settable (L, -3); 508 lua_settable (L, -3);
509 lua_pushliteral (L, "_VERSION"); 509 lua_pushliteral (L, "_VERSION");
510 lua_pushliteral (L, "1.1b"); 510 lua_pushliteral (L, "1.1.0");
511 lua_settable (L, -3); 511 lua_settable (L, -3);
512} 512}
513 513