aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabio Mascarenhas <mascarenhas@lambda.local>2009-10-20 18:54:35 -0200
committerFabio Mascarenhas <mascarenhas@lambda.local>2009-10-20 18:54:35 -0200
commit8ff20138af779f6f38cbff12d22df1a3151d9fa6 (patch)
treee94d7b25e7a5f5fb1d474eb0769790caf2e72cfb
parent5ffde8ae511e62d7e821c07da53e201ed8efc5f4 (diff)
downloadluafilesystem-1.5.0.tar.gz
luafilesystem-1.5.0.tar.bz2
luafilesystem-1.5.0.zip
packaging for version 1.5.0 - changing _VERSIONv1.5.0
-rw-r--r--src/lfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lfs.c b/src/lfs.c
index 5b1c654..f46cfed 100644
--- a/src/lfs.c
+++ b/src/lfs.c
@@ -765,13 +765,13 @@ static int link_info (lua_State *L) {
765*/ 765*/
766static void set_info (lua_State *L) { 766static void set_info (lua_State *L) {
767 lua_pushliteral (L, "_COPYRIGHT"); 767 lua_pushliteral (L, "_COPYRIGHT");
768 lua_pushliteral (L, "Copyright (C) 2003 Kepler Project"); 768 lua_pushliteral (L, "Copyright (C) 2003-2009 Kepler Project");
769 lua_settable (L, -3); 769 lua_settable (L, -3);
770 lua_pushliteral (L, "_DESCRIPTION"); 770 lua_pushliteral (L, "_DESCRIPTION");
771 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"); 771 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");
772 lua_settable (L, -3); 772 lua_settable (L, -3);
773 lua_pushliteral (L, "_VERSION"); 773 lua_pushliteral (L, "_VERSION");
774 lua_pushliteral (L, "LuaFileSystem 1.4.2"); 774 lua_pushliteral (L, "LuaFileSystem 1.5.0");
775 lua_settable (L, -3); 775 lua_settable (L, -3);
776} 776}
777 777