File tree Expand file tree Collapse file tree 5 files changed +13
-13
lines changed Expand file tree Collapse file tree 5 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 1010jobs :
1111 build-linux-cmake :
1212 name : CMake Build ${{ matrix.platform.name }} ${{ matrix.compiler.name }} ${{ matrix.flavor }} (${{ matrix.mode.name }})
13- runs-on : ubuntu-latest
13+ runs-on : ubuntu-22.04
1414
1515 strategy :
1616 fail-fast : false
5454
5555 build-linux-meson :
5656 name : Meson Build ${{ matrix.platform.name }} ${{ matrix.compiler.name }} ${{ matrix.flavor }} (${{ matrix.mode.name }})
57- runs-on : ubuntu-latest
57+ runs-on : ubuntu-22.04
5858
5959 strategy :
6060 fail-fast : false
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.15")
99 cmake_policy (SET CMP0091 NEW)
1010endif ()
1111
12- project (Zycore VERSION 1.5.0 .0 LANGUAGES C)
12+ project (Zycore VERSION 1.5.1 .0 LANGUAGES C)
1313
1414include (GNUInstallDirs)
1515include (CMakePackageConfigHelpers)
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ extern "C" {
5151/**
5252 * A macro that defines the zycore version.
5353 */
54- #define ZYCORE_VERSION (ZyanU64)0x0001000500000000
54+ #define ZYCORE_VERSION 0x0001000500010000ULL
5555
5656/* ---------------------------------------------------------------------------------------------- */
5757/* Helper macros */
@@ -62,28 +62,28 @@ extern "C" {
6262 *
6363 * @param version The zycore version value
6464 */
65- #define ZYCORE_VERSION_MAJOR (version ) (ZyanU16)( (version & 0xFFFF000000000000) >> 48)
65+ #define ZYCORE_VERSION_MAJOR (version ) ((version & 0xFFFF000000000000) >> 48)
6666
6767/**
6868 * Extracts the minor-part of the zycore version.
6969 *
7070 * @param version The zycore version value
7171 */
72- #define ZYCORE_VERSION_MINOR (version ) (ZyanU16)( (version & 0x0000FFFF00000000) >> 32)
72+ #define ZYCORE_VERSION_MINOR (version ) ((version & 0x0000FFFF00000000) >> 32)
7373
7474/**
7575 * Extracts the patch-part of the zycore version.
7676 *
7777 * @param version The zycore version value
7878 */
79- #define ZYCORE_VERSION_PATCH (version ) (ZyanU16)( (version & 0x00000000FFFF0000) >> 16)
79+ #define ZYCORE_VERSION_PATCH (version ) ((version & 0x00000000FFFF0000) >> 16)
8080
8181/**
8282 * Extracts the build-part of the zycore version.
8383 *
8484 * @param version The zycore version value
8585 */
86- #define ZYCORE_VERSION_BUILD (version ) (ZyanU16)( version & 0x000000000000FFFF)
86+ #define ZYCORE_VERSION_BUILD (version ) (version & 0x000000000000FFFF)
8787
8888/* ---------------------------------------------------------------------------------------------- */
8989
Original file line number Diff line number Diff line change 11project (
22 ' Zycore' ,
33 ' c' ,
4- version : ' 1.5.0 ' ,
4+ version : ' 1.5.1 ' ,
55 license : ' MIT' ,
66 license_files : ' LICENSE' ,
77 meson_version : ' >=1.3' ,
Original file line number Diff line number Diff line change 2727#include "winres.h"
2828
2929VS_VERSION_INFO VERSIONINFO
30- FILEVERSION 1,5,0 ,0
31- PRODUCTVERSION 1,5,0 ,0
30+ FILEVERSION 1,5,1 ,0
31+ PRODUCTVERSION 1,5,1 ,0
3232 FILEFLAGSMASK 0x3fL
3333#ifdef _DEBUG
3434 FILEFLAGS 0x1L
@@ -45,12 +45,12 @@ BEGIN
4545 BEGIN
4646 VALUE "CompanyName", "zyantific"
4747 VALUE "FileDescription", "Zyan Core Library for C"
48- VALUE "FileVersion", "1.5.0 .0"
48+ VALUE "FileVersion", "1.5.1 .0"
4949 VALUE "InternalName", "Zycore"
5050 VALUE "LegalCopyright", "Copyright \xA9 2018-2024 by zyantific.com"
5151 VALUE "OriginalFilename", "Zycore.dll"
5252 VALUE "ProductName", "Zyan Core Library for C"
53- VALUE "ProductVersion", "1.5.0 .0"
53+ VALUE "ProductVersion", "1.5.1 .0"
5454 END
5555 END
5656 BLOCK "VarFileInfo"
You can’t perform that action at this time.
0 commit comments