From a852d25314d86cde7a39a48c2c9b13a196e01ddc Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Thu, 10 Dec 2020 11:27:37 +0100 Subject: [PATCH] Trying smth --- .travis.yml | 2 +- lib/core/settings.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index bccbec6fb..158eab760 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,7 @@ jobs: dist: trusty - python: 3.6 dist: trusty - - python: 3.9-dev + - python: nightly dist: bionic git: depth: 1 diff --git a/lib/core/settings.py b/lib/core/settings.py index a7f4abf7f..a0a0b8214 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.12.18" +VERSION = "1.4.12.19" 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)