From 9a0b990e05c09d9e0ade3ab29807d9abc02488b0 Mon Sep 17 00:00:00 2001 From: 13ph03nix <17541483+13ph03nix@users.noreply.github.com> Date: Mon, 20 Mar 2023 23:13:43 -0700 Subject: [PATCH] chore: bump version to 2.0.3 --- CHANGELOG.md | 5 +++++ manpages/poc-console.1 | 2 +- manpages/pocsuite.1 | 2 +- pocsuite3/__init__.py | 2 +- setup.py | 2 +- 5 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c17353bd..62abefd1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# version 2.0.3 +---------------- +* optimized URL protocol correction #356, thanks @chenjiewei123 +* support disable protocol correction and honeypot checks through --no-check option + # version 2.0.2 ---------------- * fix url redirect problem in _check method #337 diff --git a/manpages/poc-console.1 b/manpages/poc-console.1 index e06f0886..18b729cf 100644 --- a/manpages/poc-console.1 +++ b/manpages/poc-console.1 @@ -31,7 +31,7 @@ is maintained at: .I https://pocsuite.org .PP .SH VERSION -This manual page documents pocsuite3 version 2.0.2 +This manual page documents pocsuite3 version 2.0.3 .SH AUTHOR .br (c) 2014-present by Knownsec 404 Team diff --git a/manpages/pocsuite.1 b/manpages/pocsuite.1 index 6cb5456a..c62fe6ae 100644 --- a/manpages/pocsuite.1 +++ b/manpages/pocsuite.1 @@ -289,7 +289,7 @@ is maintained at: .I https://pocsuite.org .PP .SH VERSION -This manual page documents pocsuite3 version 2.0.2 +This manual page documents pocsuite3 version 2.0.3 .SH AUTHOR .br (c) 2014-present by Knownsec 404 Team diff --git a/pocsuite3/__init__.py b/pocsuite3/__init__.py index b935dcd5..ed9f0bc4 100644 --- a/pocsuite3/__init__.py +++ b/pocsuite3/__init__.py @@ -1,5 +1,5 @@ __title__ = 'pocsuite3' -__version__ = '2.0.2' +__version__ = '2.0.3' __author__ = 'Knownsec 404 Team' __author_email__ = '404-team@knownsec.com' __license__ = 'GPLv2' diff --git a/setup.py b/setup.py index 1c92fbd5..1b52e482 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def find_packages(where='.'): setup( name='pocsuite3', - version='2.0.2', + version='2.0.3', url='https://pocsuite.org', description='Open-sourced remote vulnerability testing framework.', long_description=long_description,