From e982216251bd874cfc66e74692193b3c6c26274c Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Thu, 17 Aug 2023 15:54:44 +0200 Subject: [PATCH] Finalize version 3.16.2 --- CHANGES | 4 ++++ docs/index.html | 2 +- lanes-3.16.1-0.rockspec => lanes-3.16.2-0.rockspec | 4 ++-- src/lanes.h | 2 +- src/lanes.lua | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) rename lanes-3.16.1-0.rockspec => lanes-3.16.2-0.rockspec (97%) diff --git a/CHANGES b/CHANGES index 3c7f3562..b5ad5dfb 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,9 @@ CHANGES: +CHANGE 157: Mitalie 17-Aug-23 + * Prevent crash on linux as non-root + * internal version bumped to 3.16.2 + CHANGE 156: BGe 9-Aug-23 * new configuration option .internal_allocator to help LuaJIT users. * internal version bumped to 3.16.1 diff --git a/docs/index.html b/docs/index.html index b1c514d9..bca8340c 100644 --- a/docs/index.html +++ b/docs/index.html @@ -70,7 +70,7 @@

- This document was revised on 9-Aug-23, and applies to version 3.16.1. + This document was revised on 17-Aug-23, and applies to version 3.16.2.

diff --git a/lanes-3.16.1-0.rockspec b/lanes-3.16.2-0.rockspec similarity index 97% rename from lanes-3.16.1-0.rockspec rename to lanes-3.16.2-0.rockspec index 65115a16..5c4e437c 100644 --- a/lanes-3.16.1-0.rockspec +++ b/lanes-3.16.2-0.rockspec @@ -7,11 +7,11 @@ package = "Lanes" -version = "3.16.1-0" +version = "3.16.2-0" source= { url= "git+https://github.com/LuaLanes/lanes.git", - branch= "v3.16.1" + branch= "v3.16.2" } description = { diff --git a/src/lanes.h b/src/lanes.h index 420b31d8..b9245f35 100644 --- a/src/lanes.h +++ b/src/lanes.h @@ -12,7 +12,7 @@ #define LANES_VERSION_MAJOR 3 #define LANES_VERSION_MINOR 16 -#define LANES_VERSION_PATCH 1 +#define LANES_VERSION_PATCH 2 #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)))) #define LANES_VERSION_LESS_THAN(MAJOR, MINOR, PATCH) ((LANES_VERSION_MAJOR