From 97b88b09490df8273f4878838fea870fd464690e Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Mon, 3 Jan 2022 11:41:51 +0100 Subject: [PATCH] Minor update --- extra/shutils/pypi.sh | 2 -- lib/core/settings.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/extra/shutils/pypi.sh b/extra/shutils/pypi.sh index 6bc386d89..64bc014d7 100755 --- a/extra/shutils/pypi.sh +++ b/extra/shutils/pypi.sh @@ -163,8 +163,6 @@ Links - Demos: http://www.youtube.com/user/inquisb/videos - Screenshots: https://github.com/sqlmapproject/sqlmap/wiki/Screenshots -.. |Build Status| image:: https://api.travis-ci.org/sqlmapproject/sqlmap.svg?branch=master - :target: https://api.travis-ci.org/sqlmapproject/sqlmap .. |Python 2.6|2.7|3.x| image:: https://img.shields.io/badge/python-2.6|2.7|3.x-yellow.svg :target: https://www.python.org/ .. |License| image:: https://img.shields.io/badge/license-GPLv2-red.svg diff --git a/lib/core/settings.py b/lib/core/settings.py index 33e8e6695..34d5fb1eb 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -20,7 +20,7 @@ from thirdparty import six from thirdparty.six import unichr as _unichr # sqlmap version (...) -VERSION = "1.6" +VERSION = "1.6.1.1" TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable" TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34} VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)