aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Guisasola <tomas@luaforge.net>2005-12-26 18:20:34 +0000
committerTomas Guisasola <tomas@luaforge.net>2005-12-26 18:20:34 +0000
commit3c2c49f1e2435130d0b10030575eb7e013cfefee (patch)
treece30846155ee8542e71d1d4dec75405484770e38
parentCorrecting option which only exists on MacOS X. (diff)
downloadlualdap-3c2c49f1e2435130d0b10030575eb7e013cfefee.tar.xz
lualdap-3c2c49f1e2435130d0b10030575eb7e013cfefee.zip
Upgrading to version 1.0.1.
-rwxr-xr-xlualdap/doc/us/index.html7
-rwxr-xr-xlualdap/src/lualdap.c4
2 files changed, 6 insertions, 5 deletions
diff --git a/lualdap/doc/us/index.html b/lualdap/doc/us/index.html
index 0029488..e43ea07 100755
--- a/lualdap/doc/us/index.html
+++ b/lualdap/doc/us/index.html
@@ -71,9 +71,9 @@ to:</p>
<h2><a name="status"></a>Status</h2>
-<p>Current version is 1.0. It was developed for Lua 5.0 and OpenLDAP 2.1.</p>
+<p>Current version is 1.0.1. It was developed for Lua 5.0 and OpenLDAP 2.1.</p>
-<p>Version 1.0 follows the
+<p>Version 1.0.1 follows the
<a href="http://www.keplerproject.org/compat">package model</a> for Lua
5.1 (see <a href="manual.html#installation">Installation</a> for more
details).</p>
@@ -90,6 +90,7 @@ LuaForge page.</p>
<h2><a name="history"></a>History</h2>
<ul>
+ <li>[?/?/2005] Version 1.0.1 released</li>
<li>[10/Jun/2005] Version 1.0 released</li>
<li>[10/Dec/2003] Version 1.0 alpha released</li>
</ul>
@@ -119,7 +120,7 @@ Comments are welcome!</p>
<div id="about">
<p><a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p>
<p><small>
- $Id: index.html,v 1.27 2005-06-10 20:45:34 tuler Exp $
+ $Id: index.html,v 1.28 2005-12-26 18:20:34 tomas Exp $
</small></p>
</div> <!-- id="about" -->
diff --git a/lualdap/src/lualdap.c b/lualdap/src/lualdap.c
index e9adcd1..c21c89a 100755
--- a/lualdap/src/lualdap.c
+++ b/lualdap/src/lualdap.c
@@ -1,7 +1,7 @@
/*
** LuaLDAP
** See Copyright Notice in license.html
-** $Id: lualdap.c,v 1.42 2005-06-20 22:13:18 tomas Exp $
+** $Id: lualdap.c,v 1.43 2005-12-26 18:20:34 tomas Exp $
*/
#include <stdlib.h>
@@ -958,7 +958,7 @@ static void set_info (lua_State *L) {
lua_pushliteral (L, "LuaLDAP is a simple interface from Lua to an LDAP client");
lua_settable (L, -3);
lua_pushliteral (L, "_VERSION");
- lua_pushliteral (L, "LuaLDAP 1.0");
+ lua_pushliteral (L, "LuaLDAP 1.0.1");
lua_settable (L, -3);
}