update version to 0.28

This commit is contained in:
MihailRis 2025-03-26 09:23:33 +03:00
parent edcf288a9e
commit 14310b05fb
4 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
# Documentation # Documentation
Documentation for release 0.27. Documentation for release 0.28.
## Sections ## Sections

View File

@ -1,6 +1,6 @@
# Документация # Документация
Документация версии 0.27. Документация версии 0.28.
## Разделы ## Разделы

View File

@ -1,6 +1,6 @@
{ {
"id": "base", "id": "base",
"title": "Base", "title": "Base",
"version": "0.27", "version": "0.28",
"description": "basic content package" "description": "basic content package"
} }

View File

@ -6,7 +6,7 @@
#include <string> #include <string>
inline constexpr int ENGINE_VERSION_MAJOR = 0; inline constexpr int ENGINE_VERSION_MAJOR = 0;
inline constexpr int ENGINE_VERSION_MINOR = 27; inline constexpr int ENGINE_VERSION_MINOR = 28;
#ifdef NDEBUG #ifdef NDEBUG
inline constexpr bool ENGINE_DEBUG_BUILD = false; 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; inline constexpr bool ENGINE_DEBUG_BUILD = true;
#endif // NDEBUG #endif // NDEBUG
inline const std::string ENGINE_VERSION_STRING = "0.27"; inline const std::string ENGINE_VERSION_STRING = "0.28";
/// @brief world regions format version /// @brief world regions format version
inline constexpr uint REGION_FORMAT_VERSION = 3; inline constexpr uint REGION_FORMAT_VERSION = 3;