Skip to content

Commit

Permalink
Finalize version 3.16.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Benoit Germain committed Aug 17, 2023
1 parent 4e787d5 commit e982216
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
</p>

<p>
This document was revised on 9-Aug-23, and applies to version <tt>3.16.1</tt>.
This document was revised on 17-Aug-23, and applies to version <tt>3.16.2</tt>.
</p>
</font>
</center>
Expand Down
4 changes: 2 additions & 2 deletions lanes-3.16.1-0.rockspec → lanes-3.16.2-0.rockspec
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
2 changes: 1 addition & 1 deletion src/lanes.h
Original file line number Diff line number Diff line change
Expand Up @@ -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<MAJOR) || (LANES_VERSION_MAJOR==MAJOR && (LANES_VERSION_MINOR<MINOR || (LANES_VERSION_MINOR==MINOR && LANES_VERSION_PATCH<PATCH))))
Expand Down
2 changes: 1 addition & 1 deletion src/lanes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ lanes.configure = function( settings_)
author= "Asko Kauppi <akauppi@gmail.com>, Benoit Germain <bnt.germain@gmail.com>",
description= "Running multiple Lua states in parallel",
license= "MIT/X11",
copyright= "Copyright (c) 2007-10, Asko Kauppi; (c) 2011-19, Benoit Germain",
copyright= "Copyright (c) 2007-10, Asko Kauppi; (c) 2011-23, Benoit Germain",
version = assert( core.version)
}

Expand Down

0 comments on commit e982216

Please sign in to comment.