Skip to content

Commit

Permalink
Fix bump_version.sh & client_lua_api.md
Browse files Browse the repository at this point in the history
This modification was forgotten at release
  • Loading branch information
nerzhul committed Jun 6, 2017
1 parent 33b513f commit 47f5e7f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/client_lua_api.md
@@ -1,4 +1,4 @@
Minetest Lua Client Modding API Reference 0.4.15
Minetest Lua Client Modding API Reference 0.4.16
================================================
* More information at <http://www.minetest.net/>
* Developer Wiki: <http://dev.minetest.net/>
Expand Down
4 changes: 3 additions & 1 deletion util/bump_version.sh
Expand Up @@ -95,7 +95,9 @@ sed -i -re "1s/[0-9]+\.[0-9]+\.[0-9]+/$NEW_VERSION/g" doc/lua_api.txt || die "Fa

sed -i -re "1s/[0-9]+\.[0-9]+\.[0-9]+/$NEW_VERSION/g" doc/menu_lua_api.txt || die "Failed to update doc/menu_lua_api.txt"

git add -f CMakeLists.txt build/android/build.gradle doc/lua_api.txt doc/menu_lua_api.txt || die "git add failed"
sed -i -re "1s/[0-9]+\.[0-9]+\.[0-9]+/$NEW_VERSION/g" doc/client_lua_api.md || die "Failed to update doc/client_lua_api.md"

git add -f CMakeLists.txt build/android/build.gradle doc/lua_api.txt doc/menu_lua_api.txt doc/client_lua_api.md || die "git add failed"

git commit -m "Bump version to $NEW_VERSION" || die "git commit failed"

Expand Down

0 comments on commit 47f5e7f

Please sign in to comment.