Skip to content

Commit 25fe5dc

Browse files
committed
Minor update
1 parent 1f82d95 commit 25fe5dc

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ A clear and concise description of what you expected to happen.
2121
If applicable, add screenshots to help explain your problem.
2222

2323
**Running environment:**
24-
- sqlmap version [e.g. 1.3.5.93#dev]
25-
- Installation method [e.g. git]
26-
- Operating system: [e.g. Microsoft Windows 10]
27-
- Python version [e.g. 3.5.2]
24+
- sqlmap version [e.g. 1.7.2.12#dev]
25+
- Installation method [e.g. pip]
26+
- Operating system: [e.g. Microsoft Windows 11]
27+
- Python version [e.g. 3.11.2]
2828

2929
**Target details:**
3030
- DBMS [e.g. Microsoft SQL Server]

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from thirdparty.six import unichr as _unichr
2121

2222
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23-
VERSION = "1.7.2.12"
23+
VERSION = "1.7.2.13"
2424
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2525
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2626
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

0 commit comments

Comments
 (0)