Skip to content

Commit 02d64a5

Browse files
committedFeb 23, 2021
Continue with 5.5.0-dev
1 parent f3e51dc commit 02d64a5

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed
 

‎CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ set(CLANG_MINIMUM_VERSION "3.4")
1212

1313
# Also remember to set PROTOCOL_VERSION in network/networkprotocol.h when releasing
1414
set(VERSION_MAJOR 5)
15-
set(VERSION_MINOR 4)
15+
set(VERSION_MINOR 5)
1616
set(VERSION_PATCH 0)
1717
set(VERSION_EXTRA "" CACHE STRING "Stuff to append to version string")
1818

1919
# Change to false for releases
20-
set(DEVELOPMENT_BUILD FALSE)
20+
set(DEVELOPMENT_BUILD TRUE)
2121

2222
set(VERSION_STRING "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")
2323
if(VERSION_EXTRA)

‎build/android/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
project.ext.set("versionMajor", 5) // Version Major
4-
project.ext.set("versionMinor", 4) // Version Minor
4+
project.ext.set("versionMinor", 5) // Version Minor
55
project.ext.set("versionPatch", 0) // Version Patch
6-
project.ext.set("versionExtra", "") // Version Extra
6+
project.ext.set("versionExtra", "-dev") // Version Extra
77
project.ext.set("versionCode", 32) // Android Version Code
88
// NOTE: +2 after each release!
99
// +1 for ARM and +1 for ARM64 APK's, because

‎doc/client_lua_api.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Minetest Lua Client Modding API Reference 5.4.0
1+
Minetest Lua Client Modding API Reference 5.5.0
22
================================================
33
* More information at <http://www.minetest.net/>
44
* Developer Wiki: <http://dev.minetest.net/>

‎doc/menu_lua_api.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Minetest Lua Mainmenu API Reference 5.4.0
1+
Minetest Lua Mainmenu API Reference 5.5.0
22
=========================================
33

44
Introduction

0 commit comments

Comments
 (0)
Please sign in to comment.