diff options
| author | Benoit Germain <benoit.germain@ubisoft.com> | 2025-10-23 08:21:41 +0200 |
|---|---|---|
| committer | Benoit Germain <benoit.germain@ubisoft.com> | 2025-10-23 08:21:41 +0200 |
| commit | 6775bd90b1eac57a27856382f8e7035c2202a08b (patch) | |
| tree | 8fbca833169b571bc0eeeac790403c1793a7baef | |
| parent | b68ce05ba6cb5103951acb345b1121c4de2fee70 (diff) | |
| download | lanes-C-Implementation.tar.gz lanes-C-Implementation.tar.bz2 lanes-C-Implementation.zip | |
Prepare version 3.17.2v3.17.2C-Implementation
| -rw-r--r-- | docs/index.html | 2 | ||||
| -rw-r--r-- | lanes-3.17.2-0.rockspec (renamed from lanes-3.17.1-0.rockspec) | 4 | ||||
| -rw-r--r-- | src/lanes.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/docs/index.html b/docs/index.html index 42e3316..e1dbc8f 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 11-Mar-25, and applies to version <tt>3.17.1</tt>. | 73 | This document was revised on 23-Oct-25, and applies to version <tt>3.17.2</tt>. |
| 74 | </p> | 74 | </p> |
| 75 | </font> | 75 | </font> |
| 76 | </center> | 76 | </center> |
diff --git a/lanes-3.17.1-0.rockspec b/lanes-3.17.2-0.rockspec index a2dc3af..3672055 100644 --- a/lanes-3.17.1-0.rockspec +++ b/lanes-3.17.2-0.rockspec | |||
| @@ -7,11 +7,11 @@ | |||
| 7 | 7 | ||
| 8 | package = "Lanes" | 8 | package = "Lanes" |
| 9 | 9 | ||
| 10 | version = "3.17.1-0" | 10 | version = "3.17.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.17.1" | 14 | branch= "v3.17.2" |
| 15 | } | 15 | } |
| 16 | 16 | ||
| 17 | description = { | 17 | description = { |
diff --git a/src/lanes.h b/src/lanes.h index 00ea4a4..eb5d7e2 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 17 | 14 | #define LANES_VERSION_MINOR 17 |
| 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)))) |
