Release 0.9.14
This commit is contained in:
28
bump_version.sh
Normal file
28
bump_version.sh
Normal file
@@ -0,0 +1,28 @@
|
||||
#!/bin/bash
|
||||
current_version=$(git describe --tags --abbrev=0)
|
||||
if [ "$1" == "" ]; then
|
||||
echo
|
||||
echo "Syntax: $0 {new_version}"
|
||||
echo
|
||||
else
|
||||
echo "Current version: ($current_version)"
|
||||
echo "New version : ($1)"
|
||||
echo -n "Do you want to proceed ? "
|
||||
read a
|
||||
if [ "$a" == "y" ]; then
|
||||
echo "Doing this..."
|
||||
grep $current_version library.properties
|
||||
if [ "$?" == "0" ]; then
|
||||
sed -i "s/$current_version/$1/" library.properties
|
||||
sed -i "s/$current_version/$1/" library.json
|
||||
git tag $1
|
||||
git add library.properties
|
||||
git add library.json
|
||||
git commit -m "Release $1"
|
||||
git push
|
||||
git push --tags
|
||||
else
|
||||
echo "Current version does not match library.property version, aborting"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
Reference in New Issue
Block a user