Skip to content

Commit

Permalink
Version scheme change: 0.5.0 -> 5.0.0 (#7449)
Browse files Browse the repository at this point in the history
* Version scheme change: 0.5.0 -> 5.0.0
  • Loading branch information
nerzhul committed Jun 15, 2018
1 parent 2bec28f commit ac6e8e2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Expand Up @@ -15,8 +15,8 @@ set(GCC_MINIMUM_VERSION "4.8")
set(CLANG_MINIMUM_VERSION "3.4")

# Also remember to set PROTOCOL_VERSION in network/networkprotocol.h when releasing
set(VERSION_MAJOR 0)
set(VERSION_MINOR 5)
set(VERSION_MAJOR 5)
set(VERSION_MINOR 0)
set(VERSION_PATCH 0)
set(VERSION_EXTRA "" CACHE STRING "Stuff to append to version string")

Expand Down
8 changes: 5 additions & 3 deletions README.md
Expand Up @@ -431,9 +431,11 @@ This is how we build Windows releases.
Version scheme
--------------

Minetest doesn't follow semver. Instead, we do something roughly similar to 0.major.minor.
Minetest partially follows semver (major.minor.patch).

Since 0.5.0-dev and 0.4.17-dev, the dev notation refers to the next release,
ie: 0.5.0-dev is the development version leading to 0.5.0.
Since 5.0.0-dev and 0.4.17-dev, the dev notation refers to the next release,
ie: 5.0.0-dev is the development version leading to 5.0.0.

Prior to that, we used oldversion-dev.

Semver was adopted after 0.4.X series. Before that we used 0.major.minor scheme.
2 changes: 1 addition & 1 deletion doc/client_lua_api.txt
@@ -1,4 +1,4 @@
Minetest Lua Client Modding API Reference 0.5.0
Minetest Lua Client Modding API Reference 5.0.0
================================================
* More information at <http://www.minetest.net/>
* Developer Wiki: <http://dev.minetest.net/>
Expand Down
2 changes: 1 addition & 1 deletion doc/menu_lua_api.txt
@@ -1,4 +1,4 @@
Minetest Lua Mainmenu API Reference 0.5.0
Minetest Lua Mainmenu API Reference 5.0.0
========================================

Introduction
Expand Down

0 comments on commit ac6e8e2

Please sign in to comment.