From 9da558f041ca0bf43579c0c4161ff17566ba1e7f Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Wed, 18 Aug 2021 22:39:32 +0200 Subject: [PATCH] Minor revert (accidental change) --- data/xml/queries.xml | 2 +- lib/core/settings.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/xml/queries.xml b/data/xml/queries.xml index a9120e064..d7ae78238 100644 --- a/data/xml/queries.xml +++ b/data/xml/queries.xml @@ -128,7 +128,7 @@ - + diff --git a/lib/core/settings.py b/lib/core/settings.py index c75585389..191a63681 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.5.8.1" +VERSION = "1.5.8.2" 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)