From d7a56017bf07dd0af5552807a5b1da4e58e285e8 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Sat, 18 Jan 2020 07:54:03 +0100 Subject: [PATCH] Trivial update --- data/xml/errors.xml | 1 + lib/core/settings.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/data/xml/errors.xml b/data/xml/errors.xml index 2cb014058..822722cb0 100644 --- a/data/xml/errors.xml +++ b/data/xml/errors.xml @@ -174,5 +174,6 @@ + diff --git a/lib/core/settings.py b/lib/core/settings.py index 4e642a424..ffe39f523 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -18,7 +18,7 @@ from lib.core.enums import OS from thirdparty.six import unichr as _unichr # sqlmap version (...) -VERSION = "1.4.1.27" +VERSION = "1.4.1.28" 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)