From be7a9d10d5d0cbb8a1eac5670cc90f54fbd54b62 Mon Sep 17 00:00:00 2001 From: MihailRis Date: Fri, 7 Jun 2024 11:03:13 +0300 Subject: [PATCH] update version to 0.22 --- res/content/base/package.json | 2 +- src/constants.hpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/res/content/base/package.json b/res/content/base/package.json index db620a3d..eeb24ed0 100644 --- a/res/content/base/package.json +++ b/res/content/base/package.json @@ -1,6 +1,6 @@ { "id": "base", "title": "Base", - "version": "0.21", + "version": "0.22", "description": "basic content package" } diff --git a/src/constants.hpp b/src/constants.hpp index de6b23dc..e666563a 100644 --- a/src/constants.hpp +++ b/src/constants.hpp @@ -7,7 +7,7 @@ #include inline constexpr int ENGINE_VERSION_MAJOR = 0; -inline constexpr int ENGINE_VERSION_MINOR = 21; +inline constexpr int ENGINE_VERSION_MINOR = 22; #ifdef NDEBUG inline constexpr bool ENGINE_DEBUG_BUILD = false; @@ -15,7 +15,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.21"; +inline const std::string ENGINE_VERSION_STRING = "0.22"; inline constexpr blockid_t BLOCK_AIR = 0; inline constexpr itemid_t ITEM_EMPTY = 0;