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;