From 21725921e14d8910bdfe3cbbb8a68b40e640052a Mon Sep 17 00:00:00 2001 From: MihailRis Date: Fri, 26 Sep 2025 21:25:54 +0300 Subject: [PATCH] start 0.30 development --- 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 a5e866bf..5eb767f9 100644 --- a/doc/en/main-page.md +++ b/doc/en/main-page.md @@ -1,6 +1,8 @@ # Documentation -Documentation for 0.29. +Documentation for 0.30 (in development). + +[Documentation for 0.29.](https://github.com/MihailRis/voxelcore/blob/release-0.29/doc/ru/main-page.md) ## Sections diff --git a/doc/ru/main-page.md b/doc/ru/main-page.md index c98d893d..60d0794d 100644 --- a/doc/ru/main-page.md +++ b/doc/ru/main-page.md @@ -1,6 +1,8 @@ # Документация -Документация версии 0.29. +Документация версии 0.30 (в разработке). + +[Документация 0.29.](https://github.com/MihailRis/voxelcore/blob/release-0.29/doc/ru/main-page.md) ## Разделы diff --git a/res/content/base/package.json b/res/content/base/package.json index 4aeca4d9..f270a6d5 100644 --- a/res/content/base/package.json +++ b/res/content/base/package.json @@ -1,6 +1,6 @@ { "id": "base", "title": "Base", - "version": "0.29", + "version": "0.30", "description": "basic content package" } diff --git a/src/constants.hpp b/src/constants.hpp index 0a6df9e5..6544316e 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 = 29; +inline constexpr int ENGINE_VERSION_MINOR = 30; #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.29"; +inline const std::string ENGINE_VERSION_STRING = "0.30"; /// @brief world regions format version inline constexpr uint REGION_FORMAT_VERSION = 3;