From 3915b456657dcf2c27d43a49a9c420be155c76b6 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Thu, 9 May 2019 13:21:06 +0200 Subject: [PATCH] Trying something out --- .travis.yml | 1 + lib/core/settings.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 292149033..256ff5c94 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,3 +9,4 @@ python: - "3.6" script: - python -c "import sqlmap; import sqlmapapi" + - python sqlmap.py --smoke \ No newline at end of file diff --git a/lib/core/settings.py b/lib/core/settings.py index 723767957..e537d5a30 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -18,7 +18,7 @@ from lib.core.enums import OS from thirdparty import six # sqlmap version (...) -VERSION = "1.3.5.65" +VERSION = "1.3.5.66" 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)