File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 1818from thirdparty import six
1919
2020# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
21- VERSION = "1.3.5.78 "
21+ VERSION = "1.3.5.79 "
2222TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2323TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2424VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments