diff --git a/CHANGELOG.md b/CHANGELOG.md index 149df2c8..f8f2f094 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# version 1.9.10 +---------------- +fix different python versions have different behaviors on ipaddress library #319 + # version 1.9.9 ---------------- * auto correct url based on poc's protocol attribute #316 diff --git a/manpages/poc-console.1 b/manpages/poc-console.1 index 4d0fb53b..4497f963 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 1.9.9 +This manual page documents pocsuite3 version 1.9.10 .SH AUTHOR .br (c) 2014-present by Knownsec 404 Team diff --git a/manpages/pocsuite.1 b/manpages/pocsuite.1 index c4b59cd9..16111599 100644 --- a/manpages/pocsuite.1 +++ b/manpages/pocsuite.1 @@ -283,7 +283,7 @@ is maintained at: .I https://pocsuite.org .PP .SH VERSION -This manual page documents pocsuite3 version 1.9.9 +This manual page documents pocsuite3 version 1.9.10 .SH AUTHOR .br (c) 2014-present by Knownsec 404 Team diff --git a/pocsuite3/__init__.py b/pocsuite3/__init__.py index 79bc9fd4..92ad8427 100644 --- a/pocsuite3/__init__.py +++ b/pocsuite3/__init__.py @@ -1,5 +1,5 @@ __title__ = 'pocsuite3' -__version__ = '1.9.9' +__version__ = '1.9.10' __author__ = 'Knownsec 404 Team' __author_email__ = '404-team@knownsec.com' __license__ = 'GPLv2' diff --git a/setup.py b/setup.py index 318f40b5..e16273c9 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def find_packages(where='.'): setup( name='pocsuite3', - version='1.9.9', + version='1.9.10', url='https://pocsuite.org', description='Open-sourced remote vulnerability testing framework.', long_description=long_description,