diff options
author | Loic Blot <loic.blot@unix-experience.fr> | 2017-06-06 19:54:48 +0200 |
---|---|---|
committer | Loic Blot <loic.blot@unix-experience.fr> | 2017-06-06 19:56:15 +0200 |
commit | 47f5e7fd0f6a29fe8e4e6829d3d9a9aae4de6831 (patch) | |
tree | 1157868b2c85ce25813282c3625913a8f04283fc /util | |
parent | 33b513f76cc17629a7cba47ed52db6e382f068ee (diff) | |
download | minetest-47f5e7fd0f6a29fe8e4e6829d3d9a9aae4de6831.tar.gz minetest-47f5e7fd0f6a29fe8e4e6829d3d9a9aae4de6831.tar.bz2 minetest-47f5e7fd0f6a29fe8e4e6829d3d9a9aae4de6831.zip |
Fix bump_version.sh & client_lua_api.md
This modification was forgotten at release
Diffstat (limited to 'util')
-rwxr-xr-x | util/bump_version.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/util/bump_version.sh b/util/bump_version.sh index 948561ac3..d756d6ba1 100755 --- a/util/bump_version.sh +++ b/util/bump_version.sh @@ -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" |