forked from savon-noir/python-libnmap
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: bump up to v0.7.2 needed following pypi issue
- Loading branch information
1 parent
579b6ce
commit d142c00
Showing
7 changed files
with
31 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 1,32 @@ | ||
0.7.1: clean-up blacked code and pylint it | ||
0.7.1: add unittest for defusedxml to fix billionlaugh and external entities security issues | ||
0.7.1: Change License from CC-BY to Apache 2.0 | ||
0.7.1: Enabled defusedxml support as preferred option for parsing () | ||
0.7.1: add extra_requires for plugins deps and defusedxml | ||
0.7.1: Remove code duplication in sudo_run and sudo_run_background from process.py | ||
0.7.1: Fix empty nmap outputs due to subprocess race condition (Merge PR79 from @Shouren) | ||
0.7.1: Added banner_dict support unittest (Merge edited PR from @cfoulds) | ||
0.7.2: clean-up blacked code and pylint it | ||
0.7.2: add unittest for defusedxml to fix billionlaugh and external entities security issues | ||
0.7.2: Change License from CC-BY to Apache 2.0 | ||
0.7.2: Enabled defusedxml support as preferred option for parsing () | ||
0.7.2: add extra_requires for plugins deps and defusedxml | ||
0.7.2: Remove code duplication in sudo_run and sudo_run_background from process.py | ||
0.7.2: Fix empty nmap outputs due to subprocess race condition (Merge PR79 from @Shouren) | ||
0.7.2: Added banner_dict support unittest (Merge edited PR from @cfoulds) | ||
|
||
release: | ||
- changelog date not respecting KACL specs | ||
- check https://github.com/anton-yurchenko/git-release | ||
- https://github.com/sean0x42/markdown-extract | ||
|
||
0.7.2: add CSV backend support | ||
0.7.2: improve API for NSE scripts | ||
0.7.2: add support for post,pre and host scripts | ||
0.7.2: add a Contribution guideline page | ||
0.7.2: add development environment config and setup | ||
0.7.2: add pre-commit hooks to enforce black and isort | ||
0.7.2: automate in github actions the git workflow doc update pypi update | ||
Contribution file: | ||
- specify where version needs to be set before adding tag to commit | ||
- libnmap/__init__.py | ||
- docs/conf.py | ||
- setup.py | ||
- CHANGELOG.md (set correct date) | ||
|
||
0.7.3: Add support and tests for traceroute in nmap | ||
0.7.3: add CSV backend support | ||
0.7.3: improve API for NSE scripts | ||
0.7.3: add support for post,pre and host scripts | ||
0.7.3: add a Contribution guideline page | ||
0.7.3: add development environment config and setup | ||
0.7.3: add pre-commit hooks to enforce black and isort | ||
0.7.3: automate in github actions the git workflow doc update pypi update | ||
|
||
0.7.4: create complete python testing environment based on docker-compose and some examples | ||
0.7.4: Add support and tests for traceroute in nmap | ||
|
||
0.7.5: create complete python testing environment based on docker-compose and some examples |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 5,4 @@ | |
__maintainer__ = "Ronald Bister" | ||
__email__ = "[email protected]" | ||
__license__ = "Apache 2.0" | ||
__version__ = "0.7.1" | ||
__version__ = "0.7.2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 6,7 @@ | |
|
||
setup( | ||
name="python-libnmap", | ||
version="0.7.1", | ||
version="0.7.2", | ||
author="Ronald Bister", | ||
author_email="[email protected]", | ||
packages=["libnmap", "libnmap.plugins", "libnmap.objects"], | ||
|