Skip to content

Commit 47f5e7f

Browse files
committedJun 6, 2017
Fix bump_version.sh & client_lua_api.md
This modification was forgotten at release
1 parent 33b513f commit 47f5e7f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed
 

‎doc/client_lua_api.md

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

‎util/bump_version.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,9 @@ sed -i -re "1s/[0-9]+\.[0-9]+\.[0-9]+/$NEW_VERSION/g" doc/lua_api.txt || die "Fa
9595

9696
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"
9797

98-
git add -f CMakeLists.txt build/android/build.gradle doc/lua_api.txt doc/menu_lua_api.txt || die "git add failed"
98+
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"
99+
100+
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"
99101

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

0 commit comments

Comments
 (0)
Please sign in to comment.