Skip to content

Commit c34ecb4

Browse files
committed
chore: bump version to 2.0.5
1 parent 08b1749 commit c34ecb4

File tree

6 files changed

+16
-9
lines changed

6 files changed

+16
-9
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
run: |
7070
export VERSION=$(echo $GH_REF | sed 's:refs/tags/v::')
7171
git config --global user.email "[email protected]"
72-
git config --global user.name 'Tian Qiao'
72+
git config --global user.name '13ph03nix'
7373
git commit -a -m "Version ${VERSION} (automated version bump)"
7474
git push origin master
7575
env:

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# version 2.0.5
2+
----------------
3+
* fix hook failure due to urllib3 update #368 #373
4+
* optimize DSL expression execution #372
5+
* making mmh3 an optional dependency #359
6+
* disable mandatory updates
7+
18
# version 2.0.4
29
----------------
310
* Updated protocol names that are compatible with Nuclei v2.9.1

manpages/poc-console.1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
.\"
33
.\" Nov 3, 2022
44
.\" Man page author:
5-
.\" Tian Qiao <[email protected]>
5+
.\" 13ph03nix <[email protected]>
66
.\"
77
.SH NAME
88
.I poc-console
@@ -31,7 +31,7 @@ is maintained at:
3131
.I https://pocsuite.org
3232
.PP
3333
.SH VERSION
34-
This manual page documents pocsuite3 version 2.0.4
34+
This manual page documents pocsuite3 version 2.0.5
3535
.SH AUTHOR
3636
.br
3737
(c) 2014-present by Knownsec 404 Team
@@ -46,7 +46,7 @@ redistribute this software under certain conditions. If you wish to embed
4646
pocsuite3 technology into proprietary software, we sell alternative licenses
4747
4848
.PP
49-
Manual page started by Tian Qiao
49+
Manual page started by 13ph03nix
5050
5151
.PP
5252

manpages/pocsuite.1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
.\"
33
.\" Nov 3, 2022
44
.\" Man page author:
5-
.\" Tian Qiao <[email protected]>
5+
.\" 13ph03nix <[email protected]>
66
.\"
77
.SH NAME
88
.I pocsuite3
@@ -289,7 +289,7 @@ is maintained at:
289289
.I https://pocsuite.org
290290
.PP
291291
.SH VERSION
292-
This manual page documents pocsuite3 version 2.0.4
292+
This manual page documents pocsuite3 version 2.0.5
293293
.SH AUTHOR
294294
.br
295295
(c) 2014-present by Knownsec 404 Team
@@ -304,7 +304,7 @@ redistribute this software under certain conditions. If you wish to embed
304304
pocsuite3 technology into proprietary software, we sell alternative licenses
305305
306306
.PP
307-
Manual page started by Tian Qiao
307+
Manual page started by 13ph03nix
308308
309309
.PP
310310

pocsuite3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__title__ = 'pocsuite3'
2-
__version__ = '2.0.4'
2+
__version__ = '2.0.5'
33
__author__ = 'Knownsec 404 Team'
44
__author_email__ = '[email protected]'
55
__license__ = 'GPLv2'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def find_packages(where='.'):
2121

2222
setup(
2323
name='pocsuite3',
24-
version='2.0.4',
24+
version='2.0.5',
2525
url='https://pocsuite.org',
2626
description='Open-sourced remote vulnerability testing framework.',
2727
long_description=long_description,

0 commit comments

Comments
 (0)