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)