]> git.lizzy.rs Git - minetest.git/commitdiff
Continue with 5.8.0-dev
authorsfan5 <sfan5@live.de>
Sat, 8 Apr 2023 16:05:03 +0000 (18:05 +0200)
committersfan5 <sfan5@live.de>
Sat, 8 Apr 2023 16:05:03 +0000 (18:05 +0200)
CMakeLists.txt
android/build.gradle
doc/client_lua_api.txt
doc/menu_lua_api.txt

index 539169b204769976784c080f6ddf4c09183c7b8c..0ab60111cbd7eab1506f8ac83e8cd28477e8f1bc 100644 (file)
@@ -18,12 +18,12 @@ set(CLANG_MINIMUM_VERSION "3.5")
 
 # You should not need to edit these manually, use util/bump_version.sh
 set(VERSION_MAJOR 5)
-set(VERSION_MINOR 7)
+set(VERSION_MINOR 8)
 set(VERSION_PATCH 0)
 set(VERSION_EXTRA "" CACHE STRING "Stuff to append to version string")
 
 # Change to false for releases
-set(DEVELOPMENT_BUILD FALSE)
+set(DEVELOPMENT_BUILD TRUE)
 
 set(VERSION_STRING "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")
 if(VERSION_EXTRA)
index b1c170c7887fa8cd2177e72e0be7ce18a3642409..27bf1ba111fed29e2bf19864d2cdb991af3a854b 100644 (file)
@@ -1,11 +1,11 @@
 // Top-level build file where you can add configuration options common to all sub-projects/modules.
 
 project.ext.set("versionMajor", 5)      // Version Major
-project.ext.set("versionMinor", 7)      // Version Minor
+project.ext.set("versionMinor", 8)      // Version Minor
 project.ext.set("versionPatch", 0)      // Version Patch
-project.ext.set("versionExtra", "") // Version Extra
+project.ext.set("versionExtra", "-dev") // Version Extra
 project.ext.set("versionCode", 44)      // Android Version Code
-project.ext.set("developmentBuild", 0) // Whether it is a development build, or a release
+project.ext.set("developmentBuild", 1) // Whether it is a development build, or a release
 // NOTE: +2 after each release!
 // +1 for ARM and +1 for ARM64 APK's, because
 // each APK must have a larger `versionCode` than the previous
index 252f20fb2de1b68aa6c76f244ba9414da3df137f..53d8867d3707b22065b7f0fe01537cbda6ca0aa8 100644 (file)
@@ -1,4 +1,4 @@
-Minetest Lua Client Modding API Reference 5.7.0
+Minetest Lua Client Modding API Reference 5.8.0
 ================================================
 * More information at <http://www.minetest.net/>
 * Developer Wiki: <http://dev.minetest.net/>
index e8d7b6e400f02e6920b9af688e41b3f65399906c..d65e9c83ff4a13b14e6ef57cb331c315a83e3d87 100644 (file)
@@ -1,4 +1,4 @@
-Minetest Lua Mainmenu API Reference 5.7.0
+Minetest Lua Mainmenu API Reference 5.8.0
 =========================================
 
 Introduction