aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenoit Germain <benoit.germain@ubisoft.com>2023-08-17 15:54:44 +0200
committerBenoit Germain <benoit.germain@ubisoft.com>2023-08-17 15:54:44 +0200
commite982216251bd874cfc66e74692193b3c6c26274c (patch)
treed0c06efb33851ed1c0f183bb3cc07ec421320b39
parent4e787d50ae28e2080c1032b57354491be5c4a155 (diff)
downloadlanes-e982216251bd874cfc66e74692193b3c6c26274c.tar.gz
lanes-e982216251bd874cfc66e74692193b3c6c26274c.tar.bz2
lanes-e982216251bd874cfc66e74692193b3c6c26274c.zip
Finalize version 3.16.2v3.16.2
-rw-r--r--CHANGES4
-rw-r--r--docs/index.html2
-rw-r--r--lanes-3.16.2-0.rockspec (renamed from lanes-3.16.1-0.rockspec)4
-rw-r--r--src/lanes.h2
-rw-r--r--src/lanes.lua2
5 files changed, 9 insertions, 5 deletions
diff --git a/CHANGES b/CHANGES
index 3c7f356..b5ad5df 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,9 @@
1CHANGES: 1CHANGES:
2 2
3CHANGE 157: Mitalie 17-Aug-23
4 * Prevent crash on linux as non-root
5 * internal version bumped to 3.16.2
6
3CHANGE 156: BGe 9-Aug-23 7CHANGE 156: BGe 9-Aug-23
4 * new configuration option .internal_allocator to help LuaJIT users. 8 * new configuration option .internal_allocator to help LuaJIT users.
5 * internal version bumped to 3.16.1 9 * internal version bumped to 3.16.1
diff --git a/docs/index.html b/docs/index.html
index b1c514d..bca8340 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -70,7 +70,7 @@
70 </p> 70 </p>
71 71
72 <p> 72 <p>
73 This document was revised on 9-Aug-23, and applies to version <tt>3.16.1</tt>. 73 This document was revised on 17-Aug-23, and applies to version <tt>3.16.2</tt>.
74 </p> 74 </p>
75 </font> 75 </font>
76 </center> 76 </center>
diff --git a/lanes-3.16.1-0.rockspec b/lanes-3.16.2-0.rockspec
index 65115a1..5c4e437 100644
--- a/lanes-3.16.1-0.rockspec
+++ b/lanes-3.16.2-0.rockspec
@@ -7,11 +7,11 @@
7 7
8package = "Lanes" 8package = "Lanes"
9 9
10version = "3.16.1-0" 10version = "3.16.2-0"
11 11
12source= { 12source= {
13 url= "git+https://github.com/LuaLanes/lanes.git", 13 url= "git+https://github.com/LuaLanes/lanes.git",
14 branch= "v3.16.1" 14 branch= "v3.16.2"
15} 15}
16 16
17description = { 17description = {
diff --git a/src/lanes.h b/src/lanes.h
index 420b31d..b9245f3 100644
--- a/src/lanes.h
+++ b/src/lanes.h
@@ -12,7 +12,7 @@
12 12
13#define LANES_VERSION_MAJOR 3 13#define LANES_VERSION_MAJOR 3
14#define LANES_VERSION_MINOR 16 14#define LANES_VERSION_MINOR 16
15#define LANES_VERSION_PATCH 1 15#define LANES_VERSION_PATCH 2
16 16
17#define LANES_MIN_VERSION_REQUIRED(MAJOR, MINOR, PATCH) ((LANES_VERSION_MAJOR>MAJOR) || (LANES_VERSION_MAJOR==MAJOR && (LANES_VERSION_MINOR>MINOR || (LANES_VERSION_MINOR==MINOR && LANES_VERSION_PATCH>=PATCH)))) 17#define LANES_MIN_VERSION_REQUIRED(MAJOR, MINOR, PATCH) ((LANES_VERSION_MAJOR>MAJOR) || (LANES_VERSION_MAJOR==MAJOR && (LANES_VERSION_MINOR>MINOR || (LANES_VERSION_MINOR==MINOR && LANES_VERSION_PATCH>=PATCH))))
18#define LANES_VERSION_LESS_THAN(MAJOR, MINOR, PATCH) ((LANES_VERSION_MAJOR<MAJOR) || (LANES_VERSION_MAJOR==MAJOR && (LANES_VERSION_MINOR<MINOR || (LANES_VERSION_MINOR==MINOR && LANES_VERSION_PATCH<PATCH)))) 18#define LANES_VERSION_LESS_THAN(MAJOR, MINOR, PATCH) ((LANES_VERSION_MAJOR<MAJOR) || (LANES_VERSION_MAJOR==MAJOR && (LANES_VERSION_MINOR<MINOR || (LANES_VERSION_MINOR==MINOR && LANES_VERSION_PATCH<PATCH))))
diff --git a/src/lanes.lua b/src/lanes.lua
index cbcf74f..b4c0070 100644
--- a/src/lanes.lua
+++ b/src/lanes.lua
@@ -153,7 +153,7 @@ lanes.configure = function( settings_)
153 author= "Asko Kauppi <akauppi@gmail.com>, Benoit Germain <bnt.germain@gmail.com>", 153 author= "Asko Kauppi <akauppi@gmail.com>, Benoit Germain <bnt.germain@gmail.com>",
154 description= "Running multiple Lua states in parallel", 154 description= "Running multiple Lua states in parallel",
155 license= "MIT/X11", 155 license= "MIT/X11",
156 copyright= "Copyright (c) 2007-10, Asko Kauppi; (c) 2011-19, Benoit Germain", 156 copyright= "Copyright (c) 2007-10, Asko Kauppi; (c) 2011-23, Benoit Germain",
157 version = assert( core.version) 157 version = assert( core.version)
158 } 158 }
159 159