We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 590e8ed commit 4c4de54Copy full SHA for 4c4de54
lib/core/settings.py
@@ -19,7 +19,7 @@
19
from lib.core.enums import OS
20
21
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22
-VERSION = "1.2.12.49"
+VERSION = "1.3"
23
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
24
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
25
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
0 commit comments