From 24c1a0f9420a75b5616dbe778f7b466220d09c8f Mon Sep 17 00:00:00 2001 From: MihailRis Date: Tue, 22 Oct 2024 19:07:39 +0300 Subject: [PATCH] update version to 0.24 --- doc/en/main-page.md | 4 +++- doc/ru/main-page.md | 4 +++- res/content/base/package.json | 2 +- src/constants.hpp | 4 ++-- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/doc/en/main-page.md b/doc/en/main-page.md index 53ac9166..7ee6f87c 100644 --- a/doc/en/main-page.md +++ b/doc/en/main-page.md @@ -1,6 +1,8 @@ # 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 diff --git a/doc/ru/main-page.md b/doc/ru/main-page.md index 5e62e0f2..0297cd46 100644 --- a/doc/ru/main-page.md +++ b/doc/ru/main-page.md @@ -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) ## Разделы diff --git a/res/content/base/package.json b/res/content/base/package.json index fc04da9c..0ed25d38 100644 --- a/res/content/base/package.json +++ b/res/content/base/package.json @@ -1,6 +1,6 @@ { "id": "base", "title": "Base", - "version": "0.23", + "version": "0.24", "description": "basic content package" } diff --git a/src/constants.hpp b/src/constants.hpp index e99c1c7f..53be95d2 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 = 23; +inline constexpr int ENGINE_VERSION_MINOR = 24; #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.23"; +inline const std::string ENGINE_VERSION_STRING = "0.24"; /// @brief world regions format version inline constexpr uint REGION_FORMAT_VERSION = 3;