diff options
author | Benoit Germain <benoit.germain@ubisoft.com> | 2025-03-11 09:08:45 +0100 |
---|---|---|
committer | Benoit Germain <benoit.germain@ubisoft.com> | 2025-03-11 09:08:45 +0100 |
commit | 3e37144631b6829dc4d376f98a8822a6d2b667ad (patch) | |
tree | 02cfbd9cade190de0312b560e34005c8cb911a2c | |
parent | b979692476663f4a799a773f9b89d386e1c91de3 (diff) | |
download | lanes-3e37144631b6829dc4d376f98a8822a6d2b667ad.tar.gz lanes-3e37144631b6829dc4d376f98a8822a6d2b667ad.tar.bz2 lanes-3e37144631b6829dc4d376f98a8822a6d2b667ad.zip |
Bump minor version
-rw-r--r-- | CHANGES | 1 | ||||
-rw-r--r-- | lanes-3.17.1-0.rockspec (renamed from lanes-3.17.0-0.rockspec) | 0 | ||||
-rw-r--r-- | src/lanes.h | 2 |
3 files changed, 2 insertions, 1 deletions
@@ -2,6 +2,7 @@ CHANGES: | |||
2 | 2 | ||
3 | CHANGE 163: BGe 11-Mar-25 | 3 | CHANGE 163: BGe 11-Mar-25 |
4 | * Fix a compilation warning | 4 | * Fix a compilation warning |
5 | * internal version bumped to 3.17.1 | ||
5 | 6 | ||
6 | CHANGE 162: BGe 29-Apr-24 | 7 | CHANGE 162: BGe 29-Apr-24 |
7 | * remove uintptr_t again. I love optional stuff in standard headers | 8 | * remove uintptr_t again. I love optional stuff in standard headers |
diff --git a/lanes-3.17.0-0.rockspec b/lanes-3.17.1-0.rockspec index 69ee515..69ee515 100644 --- a/lanes-3.17.0-0.rockspec +++ b/lanes-3.17.1-0.rockspec | |||
diff --git a/src/lanes.h b/src/lanes.h index 62b9ea9..00ea4a4 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 0 | 15 | #define LANES_VERSION_PATCH 1 |
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)))) |