update version to 0.27

This commit is contained in:
MihailRis 2025-02-04 15:12:30 +03:00
parent 6303975ddc
commit b89cf65165
4 changed files with 9 additions and 5 deletions

View File

@ -1,6 +1,8 @@
# Documentation
Documentation for release 0.26.
Documentation for 0.27, which is in development.
Documentation for [0.26.x](https://github.com/MihailRis/VoxelEngine-Cpp/blob/release-0.26/doc/en/main-page.md).
## Sections

View File

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

View File

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

View File

@ -6,7 +6,7 @@
#include <string>
inline constexpr int ENGINE_VERSION_MAJOR = 0;
inline constexpr int ENGINE_VERSION_MINOR = 26;
inline constexpr int ENGINE_VERSION_MINOR = 27;
#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.26";
inline const std::string ENGINE_VERSION_STRING = "0.27";
/// @brief world regions format version
inline constexpr uint REGION_FORMAT_VERSION = 3;