Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to v1.5.2 #83

Merged
merged 1 commit into from
Feb 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.15")
cmake_policy(SET CMP0091 NEW)
endif ()

project(Zycore VERSION 1.5.1.0 LANGUAGES C)
project(Zycore VERSION 1.5.2.0 LANGUAGES C)

include(GNUInstallDirs)
include(CMakePackageConfigHelpers)
Expand Down
2 changes: 1 addition & 1 deletion include/Zycore/Zycore.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ extern "C" {
/**
* A macro that defines the zycore version.
*/
#define ZYCORE_VERSION 0x0001000500010000ULL
#define ZYCORE_VERSION 0x0001000500020000ULL

/* ---------------------------------------------------------------------------------------------- */
/* Helper macros */
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'Zycore',
'c',
version: '1.5.1',
version: '1.5.2',
license: 'MIT',
license_files: 'LICENSE',
meson_version: '>=1.3',
Expand Down
10 changes: 5 additions & 5 deletions resources/VersionInfo.rc
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
#include "winres.h"

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,5,1,0
PRODUCTVERSION 1,5,1,0
FILEVERSION 1,5,2,0
PRODUCTVERSION 1,5,2,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -45,12 +45,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "zyantific"
VALUE "FileDescription", "Zyan Core Library for C"
VALUE "FileVersion", "1.5.1.0"
VALUE "FileVersion", "1.5.2.0"
VALUE "InternalName", "Zycore"
VALUE "LegalCopyright", "Copyright \xA9 2018-2024 by zyantific.com"
VALUE "LegalCopyright", "Copyright \xA9 2018-2025 by zyantific.com"
VALUE "OriginalFilename", "Zycore.dll"
VALUE "ProductName", "Zyan Core Library for C"
VALUE "ProductVersion", "1.5.1.0"
VALUE "ProductVersion", "1.5.2.0"
END
END
BLOCK "VarFileInfo"
Expand Down