Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit acaef90

Browse files
committed
Minor tuning of auto tagging
1 parent 31d7021 commit acaef90

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

extra/shutils/postcommit-hook

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ then
1313
NEW_TAG=$(python -c "import re, sys, time; version = re.search('\"([0-9.]*)\"', sys.argv[1]).group(1); _ = version.split('.'); print '.'.join(_[:-1]) if len(_) == 4 and _[-1] == '0' else ''" "$LINE")
1414
if [ -n "$NEW_TAG" ]
1515
then
16+
git commit -am "Automatic monthly tagging"
1617
echo "Creating new tag ${NEW_TAG}";
1718
git tag $NEW_TAG;
18-
#git push origin $NEW_TAG
19+
git push origin $NEW_TAG
1920
fi
2021
fi;

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from lib.core.revision import getRevisionNumber
2121

2222
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23-
VERSION = "1.0.3.11"
23+
VERSION = "1.0.3.12"
2424
REVISION = getRevisionNumber()
2525
STABLE = VERSION.count('.') <= 2
2626
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")

0 commit comments

Comments
 (0)