diff options
author | tomas <tomas> | 2005-04-08 18:57:11 +0000 |
---|---|---|
committer | tomas <tomas> | 2005-04-08 18:57:11 +0000 |
commit | f22a37da92fd83ed1ffb0d617e3a18c604fd440b (patch) | |
tree | 54195ae9c193e947c2c3e86e9318fc715832b258 | |
parent | bb0cb1f342a7a5cfe700c5dcf81c24ff4a87d67e (diff) | |
download | luafilesystem-f22a37da92fd83ed1ffb0d617e3a18c604fd440b.tar.gz luafilesystem-f22a37da92fd83ed1ffb0d617e3a18c604fd440b.tar.bz2 luafilesystem-f22a37da92fd83ed1ffb0d617e3a18c604fd440b.zip |
Upgrading version number.
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | src/lfs.c | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -1,10 +1,10 @@ | |||
1 | # $Id: Makefile,v 1.14 2005/04/08 18:55:00 tomas Exp $ | 1 | # $Id: Makefile,v 1.15 2005/04/08 18:57:11 tomas Exp $ |
2 | 2 | ||
3 | T= lfs | 3 | T= lfs |
4 | 4 | ||
5 | include ./config | 5 | include ./config |
6 | 6 | ||
7 | V= 1.1 | 7 | V= 1.1.0 |
8 | DIST_DIR= luafilesystem-$V | 8 | DIST_DIR= luafilesystem-$V |
9 | TAR_FILE= $(DIST_DIR).tar.gz | 9 | TAR_FILE= $(DIST_DIR).tar.gz |
10 | ZIP_FILE= $(DIST_DIR).zip | 10 | ZIP_FILE= $(DIST_DIR).zip |
@@ -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 | ||