From 14310b05fbd59f13f379ca3f517cd2d069b416e5 Mon Sep 17 00:00:00 2001 From: MihailRis Date: Wed, 26 Mar 2025 09:23:33 +0300 Subject: [PATCH] update version to 0.28 --- doc/en/main-page.md | 2 +- doc/ru/main-page.md | 2 +- res/content/base/package.json | 2 +- src/constants.hpp | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/en/main-page.md b/doc/en/main-page.md index e1f13230..94aaaebe 100644 --- a/doc/en/main-page.md +++ b/doc/en/main-page.md @@ -1,6 +1,6 @@ # Documentation -Documentation for release 0.27. +Documentation for release 0.28. ## Sections diff --git a/doc/ru/main-page.md b/doc/ru/main-page.md index 72503052..8d034a88 100644 --- a/doc/ru/main-page.md +++ b/doc/ru/main-page.md @@ -1,6 +1,6 @@ # Документация -Документация версии 0.27. +Документация версии 0.28. ## Разделы diff --git a/res/content/base/package.json b/res/content/base/package.json index 4f992e4c..73b8dcd0 100644 --- a/res/content/base/package.json +++ b/res/content/base/package.json @@ -1,6 +1,6 @@ { "id": "base", "title": "Base", - "version": "0.27", + "version": "0.28", "description": "basic content package" } diff --git a/src/constants.hpp b/src/constants.hpp index 1accd619..32acc83e 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 = 27; +inline constexpr int ENGINE_VERSION_MINOR = 28; #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.27"; +inline const std::string ENGINE_VERSION_STRING = "0.28"; /// @brief world regions format version inline constexpr uint REGION_FORMAT_VERSION = 3;