Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1ae2b14

Browse files
committed
Update of CHANGELOG
1 parent 32076c5 commit 1ae2b14

3 files changed

Lines changed: 14 additions & 2 deletions

File tree

doc/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# Version 1.3 (2019-01-05)
2+
3+
* [View changes](https://github.com/sqlmapproject/sqlmap/compare/1.2...1.3)
4+
5+
# Version 1.2 (2018-01-08)
6+
7+
* [View changes](https://github.com/sqlmapproject/sqlmap/compare/1.1...1.2)
8+
9+
# Version 1.1 (2017-04-07)
10+
11+
* [View changes](https://github.com/sqlmapproject/sqlmap/compare/1.0...1.1)
12+
113
# Version 1.0 (2016-02-27)
214

315
* Implemented support for automatic decoding of page content through detected charset.

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from thirdparty import six
1919

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

thirdparty/odict/ordereddict.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def __eq__(self, other):
120120
if isinstance(other, OrderedDict):
121121
if len(self) != len(other):
122122
return False
123-
for p, q in zip(self.items(), other.items()):
123+
for p, q in zip(self.items(), other.items()):
124124
if p != q:
125125
return False
126126
return True

0 commit comments

Comments
 (0)