diff options
author | Benoit Germain <benoit.germain@ubisoft.com> | 2023-08-17 15:54:44 +0200 |
---|---|---|
committer | Benoit Germain <benoit.germain@ubisoft.com> | 2023-08-17 15:54:44 +0200 |
commit | e982216251bd874cfc66e74692193b3c6c26274c (patch) | |
tree | d0c06efb33851ed1c0f183bb3cc07ec421320b39 | |
parent | 4e787d50ae28e2080c1032b57354491be5c4a155 (diff) | |
download | lanes-e982216251bd874cfc66e74692193b3c6c26274c.tar.gz lanes-e982216251bd874cfc66e74692193b3c6c26274c.tar.bz2 lanes-e982216251bd874cfc66e74692193b3c6c26274c.zip |
Finalize version 3.16.2v3.16.2
-rw-r--r-- | CHANGES | 4 | ||||
-rw-r--r-- | docs/index.html | 2 | ||||
-rw-r--r-- | lanes-3.16.2-0.rockspec (renamed from lanes-3.16.1-0.rockspec) | 4 | ||||
-rw-r--r-- | src/lanes.h | 2 | ||||
-rw-r--r-- | src/lanes.lua | 2 |
5 files changed, 9 insertions, 5 deletions
@@ -1,5 +1,9 @@ | |||
1 | CHANGES: | 1 | CHANGES: |
2 | 2 | ||
3 | CHANGE 157: Mitalie 17-Aug-23 | ||
4 | * Prevent crash on linux as non-root | ||
5 | * internal version bumped to 3.16.2 | ||
6 | |||
3 | CHANGE 156: BGe 9-Aug-23 | 7 | CHANGE 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 | ||
8 | package = "Lanes" | 8 | package = "Lanes" |
9 | 9 | ||
10 | version = "3.16.1-0" | 10 | version = "3.16.2-0" |
11 | 11 | ||
12 | source= { | 12 | source= { |
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 | ||
17 | description = { | 17 | description = { |
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 | ||