From 788dcbf077a2a0f044f073bfe50d000425720c55 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Wed, 20 May 2020 15:04:31 +0200 Subject: [PATCH] Update of THANKS file --- doc/THANKS.md | 3 +++ lib/core/settings.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/THANKS.md b/doc/THANKS.md index 65fbc2fcf..d4ffc0909 100644 --- a/doc/THANKS.md +++ b/doc/THANKS.md @@ -486,6 +486,9 @@ Marek Sarvas, Philippe A. R. Schaeffer, * for reporting a minor bug +Henri Salo +* for a donation + Mohd Zamiri Sanin, * for reporting a minor bug diff --git a/lib/core/settings.py b/lib/core/settings.py index e0a545370..0d3c7d896 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.5.24" +VERSION = "1.4.5.25" 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)