update version to 0.24

This commit is contained in:
MihailRis 2024-10-22 19:07:39 +03:00
parent d3d4e0a69a
commit 24c1a0f942
4 changed files with 9 additions and 5 deletions

View File

@ -1,6 +1,8 @@
# Documentation # Documentation
Documentation for the engine of version 0.23.x. Documentation for the engine of in-development version 0.24.
[Documentation for the engine of stable version 0.23.x.](https://github.com/MihailRis/VoxelEngine-Cpp/blob/release-0.23/doc/en/main-page.md)
## Sections ## Sections

View File

@ -1,6 +1,8 @@
# Документация # Документация
Документация движка версии 0.23.x. Документация движка разрабатываемой версии 0.24.
[Документация движка стабильной версии 0.23.x.](https://github.com/MihailRis/VoxelEngine-Cpp/blob/release-0.23/doc/ru/main-page.md)
## Разделы ## Разделы

View File

@ -1,6 +1,6 @@
{ {
"id": "base", "id": "base",
"title": "Base", "title": "Base",
"version": "0.23", "version": "0.24",
"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 = 23; inline constexpr int ENGINE_VERSION_MINOR = 24;
#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.23"; inline const std::string ENGINE_VERSION_STRING = "0.24";
/// @brief world regions format version /// @brief world regions format version
inline constexpr uint REGION_FORMAT_VERSION = 3; inline constexpr uint REGION_FORMAT_VERSION = 3;