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;