From 1ae2b14b39cf4833ce505225290c79a7050c01f4 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Fri, 10 May 2019 10:21:42 +0200 Subject: [PATCH] Update of CHANGELOG --- doc/CHANGELOG.md | 12 ++++++++++++ lib/core/settings.py | 2 +- thirdparty/odict/ordereddict.py | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/doc/CHANGELOG.md b/doc/CHANGELOG.md index 88bbcf56e..95eb8678e 100644 --- a/doc/CHANGELOG.md +++ b/doc/CHANGELOG.md @@ -1,3 +1,15 @@ +# Version 1.3 (2019-01-05) + +* [View changes](https://github.com/sqlmapproject/sqlmap/compare/1.2...1.3) + +# Version 1.2 (2018-01-08) + +* [View changes](https://github.com/sqlmapproject/sqlmap/compare/1.1...1.2) + +# Version 1.1 (2017-04-07) + +* [View changes](https://github.com/sqlmapproject/sqlmap/compare/1.0...1.1) + # Version 1.0 (2016-02-27) * Implemented support for automatic decoding of page content through detected charset. diff --git a/lib/core/settings.py b/lib/core/settings.py index 83e860baf..23be693af 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -18,7 +18,7 @@ from lib.core.enums import OS from thirdparty import six # sqlmap version (...) -VERSION = "1.3.5.78" +VERSION = "1.3.5.79" TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable" TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34} VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE) diff --git a/thirdparty/odict/ordereddict.py b/thirdparty/odict/ordereddict.py index 9396e9b05..4f87050c6 100644 --- a/thirdparty/odict/ordereddict.py +++ b/thirdparty/odict/ordereddict.py @@ -120,7 +120,7 @@ class OrderedDict(dict, DictMixin): if isinstance(other, OrderedDict): if len(self) != len(other): return False - for p, q in zip(self.items(), other.items()): + for p, q in zip(self.items(), other.items()): if p != q: return False return True