Update version tag : 0.8.0

This commit is contained in:
Edouard DUPIN 2013-12-28 15:44:24 +01:00
parent 713907d569
commit 701d6519a3
2 changed files with 22 additions and 0 deletions

21
createTag.sh Executable file
View File

@ -0,0 +1,21 @@
#!/bin/bash
usage()
{
echo -e "$0 [TAG]"
echo -e "\t\t[TAG] : Tag to set on the version"
exit -1
}
#verify all input parameters :
tag=""
if [ "$1" = "" ] ; then
usage
else
tag="$1"
fi
echo -n $tag > tag
git commit -a -m "Update version tag : $tag"
git tag $tag

1
tag Normal file
View File

@ -0,0 +1 @@
0.8.0