aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenoit Germain <bnt.germain@gmail.com>2012-05-08 21:10:50 +0200
committerBenoit Germain <bnt.germain@gmail.com>2012-05-08 21:10:50 +0200
commit1c33960abd867e425bad2633a85504f55a1f261c (patch)
tree0f7a8368d954869f018bc94b48d0e6db2598f232
parent0454b681a706b7712460cb3d6882a0b2d2c634b2 (diff)
downloadlanes-3.1.1.tar.gz
lanes-3.1.1.tar.bz2
lanes-3.1.1.zip
bumping version number to 3.1.1v3.1.1
-rw-r--r--CHANGES3
-rw-r--r--docs/index.html6
-rw-r--r--src/lanes.c2
3 files changed, 10 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index b2fe499..d9f2641 100644
--- a/CHANGES
+++ b/CHANGES
@@ -3,6 +3,9 @@ CHANGES:
3 3
4CHANGE X: 4CHANGE X:
5 5
6CHANGE 36 BGe 26-Apr-2012
7 * improved LuaJIT2 compatibility by handling "*" library set through luaL_openlibs()
8
6CHANGE 35 BGe 17-Feb-2012 9CHANGE 35 BGe 17-Feb-2012
7 * changed lanes.configure signature to receive a table instead of individual parameters 10 * changed lanes.configure signature to receive a table instead of individual parameters
8 * added support for an on_state_create callback called to load custom functions in a state in addition to the base libraries 11 * added support for an on_state_create callback called to load custom functions in a state in addition to the base libraries
diff --git a/docs/index.html b/docs/index.html
index 72e91ba..5fe992d 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -1078,6 +1078,12 @@ its actual value.
1078<h2 id="changes">Change log</h2> 1078<h2 id="changes">Change log</h2>
1079 1079
1080<p> 1080<p>
1081 Apr-2012
1082 <ul>
1083 <li>improved LuaJIT2 compatibility by handling "*" library set through luaL_openlibs().</li>
1084 </ul>
1085
1086
1081 Feb-2012 1087 Feb-2012
1082 <ul> 1088 <ul>
1083 <li>Added support for an on_state_create callback invoked on a pristine Lua state created by Lanes.</li> 1089 <li>Added support for an on_state_create callback invoked on a pristine Lua state created by Lanes.</li>
diff --git a/src/lanes.c b/src/lanes.c
index 513a006..176009a 100644
--- a/src/lanes.c
+++ b/src/lanes.c
@@ -51,7 +51,7 @@
51 * ... 51 * ...
52 */ 52 */
53 53
54char const* VERSION = "3.1.0"; 54char const* VERSION = "3.1.1";
55 55
56/* 56/*
57=============================================================================== 57===============================================================================