Skip to content

Commit

Permalink
Merge pull request #1735 from sqlmapproject/1.0
Browse files Browse the repository at this point in the history
Adjusting version number
  • Loading branch information
stamparm committed Feb 27, 2016
2 parents f190327 + adfcb1a commit c66607c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
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"
Expand Down

0 comments on commit c66607c

Please sign in to comment.