From adfcb1ad679cfd173ad63169adbd4d477d0c083b Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Sat, 27 Feb 2016 15:59:52 +0100 Subject: [PATCH] Adjusting version number --- lib/core/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/settings.py b/lib/core/settings.py index 71199f08e..aa9cd2af7 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -20,9 +20,9 @@ from lib.core.enums import OS from lib.core.revision import getRevisionNumber # sqlmap version and site -VERSION = "1.0-dev" +VERSION = "1.0-stable" REVISION = getRevisionNumber() -VERSION_STRING = "sqlmap/%s%s" % (VERSION, "-%s" % REVISION if REVISION else "-nongit-%s-%04x" % (time.strftime("%Y%m%d", time.gmtime(os.path.getmtime(__file__))), os.path.getsize(os.path.join(os.path.dirname(__file__), "common.py")) & 0xffff)) +VERSION_STRING = "sqlmap/%s" % VERSION DESCRIPTION = "automatic SQL injection and database takeover tool" SITE = "http://sqlmap.org" ISSUES_PAGE = "https://github.com/sqlmapproject/sqlmap/issues/new"