Skip to content

Commit e0eeed0

Browse files
committed
Minor update
1 parent 55272f7 commit e0eeed0

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

extra/shutils/postcommit-hook.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ 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"
16+
#git commit -am "Automatic monthly tagging"
1717
echo "Creating new tag ${NEW_TAG}"
1818
git tag $NEW_TAG
1919
git push origin $NEW_TAG

extra/shutils/pypi.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ If you prefer fetching daily updates, you can download sqlmap by cloning the
107107
108108
::
109109
110-
git clone https://github.com/sqlmapproject/sqlmap.git sqlmap-dev
110+
git clone --depth 1 https://github.com/sqlmapproject/sqlmap.git sqlmap-dev
111111
112112
sqlmap works out of the box with
113113
`Python <http://www.python.org/download/>`__ version **2.6.x** and

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.enums import OS
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.1"
22+
VERSION = "1.1.1.1"
2323
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2424
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2525
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

txt/checksum.md5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ e544108e2238d756c94a240e8a1ce061 lib/core/optiondict.py
4545
d8e9250f3775119df07e9070eddccd16 lib/core/replication.py
4646
785f86e3f963fa3798f84286a4e83ff2 lib/core/revision.py
4747
40c80b28b3a5819b737a5a17d4565ae9 lib/core/session.py
48-
75d8ca625f08e39702965b2b3569b5d8 lib/core/settings.py
48+
f2357b8338b164d624446ddd8d6f2cbd lib/core/settings.py
4949
d91291997d2bd2f6028aaf371bf1d3b6 lib/core/shell.py
5050
2ad85c130cc5f2b3701ea85c2f6bbf20 lib/core/subprocessng.py
5151
afd0636d2e93c23f4f0a5c9b6023ea17 lib/core/target.py

0 commit comments

Comments
 (0)