From 81e3f2071dafe28d8cd3c01dd9b9bce69e83bf1b Mon Sep 17 00:00:00 2001 From: Caleb Stewart Date: Tue, 15 Jun 2021 21:24:13 -0400 Subject: [PATCH] Bump to v0.4.2 --- CHANGELOG.md | 6 ++++++ setup.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8accc4f..305ccf7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,10 +9,16 @@ and simply didn't have the time to go back and retroactively create one. ## [Unreleased] +## [0.4.2] - 2021-06-15 +Quick patch release due to corrected bug in `ChannelFile` which caused command +output to be empty in some situations. + +### Fixed - Fixed `linux.enumerate.system.network` to work with old and new style `ip`. - Fixed `ChannelFile.recvinto` which will no longer raise `BlockingIOError` ([#126](https://github.com/calebstewart/pwncat/issues/126), [#131](https://github.com/calebstewart/pwncat/issues/131)) - Fixed sessions command with invalid session ID ([#130](https://github.com/calebstewart/pwncat/issues/130)) - Fixed zsh shell prompt color syntax ([#130](https://github.com/calebstewart/pwncat/issues/130)) +### Added - Added Pull Request template - Added CONTRIBUTING.md - Added `--version` option to entrypoint to retrieve pwncat version diff --git a/setup.py b/setup.py index 46a8577..3322ec1 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ dependency_links = [] # Setup setup( name="pwncat", - version="0.4.0a1", + version="0.4.2", python_requires=">=3.8", description="A fancy reverse and bind shell handler", author="Caleb Stewart",