From 01c568e032b4faea5ccc016aebaea437d7d92553 Mon Sep 17 00:00:00 2001 From: MihailRis Date: Tue, 12 Nov 2024 07:51:15 +0300 Subject: [PATCH] set version to 0.25 --- res/content/base/package.json | 2 +- src/constants.hpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/res/content/base/package.json b/res/content/base/package.json index 0ed25d38..7645a6e0 100644 --- a/res/content/base/package.json +++ b/res/content/base/package.json @@ -1,6 +1,6 @@ { "id": "base", "title": "Base", - "version": "0.24", + "version": "0.25", "description": "basic content package" } diff --git a/src/constants.hpp b/src/constants.hpp index 53be95d2..12e12c75 100644 --- a/src/constants.hpp +++ b/src/constants.hpp @@ -6,7 +6,7 @@ #include inline constexpr int ENGINE_VERSION_MAJOR = 0; -inline constexpr int ENGINE_VERSION_MINOR = 24; +inline constexpr int ENGINE_VERSION_MINOR = 25; #ifdef NDEBUG inline constexpr bool ENGINE_DEBUG_BUILD = false; @@ -14,7 +14,7 @@ inline constexpr bool ENGINE_DEBUG_BUILD = false; inline constexpr bool ENGINE_DEBUG_BUILD = true; #endif // NDEBUG -inline const std::string ENGINE_VERSION_STRING = "0.24"; +inline const std::string ENGINE_VERSION_STRING = "0.25"; /// @brief world regions format version inline constexpr uint REGION_FORMAT_VERSION = 3;