From 2e09b7dd91df719387934e58e9defc89c8b45b74 Mon Sep 17 00:00:00 2001 From: Arusekk Date: Tue, 14 Nov 2023 20:01:02 +0100 Subject: [PATCH] Release 4.11.1 --- CHANGELOG.md | 7 +++++-- pwnlib/version.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 722187878..4f835c23f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ The table below shows which release corresponds to each branch, and what date th | ---------------- | -------- | ---------------------- | | [4.13.0](#4130-dev) | `dev` | | [4.12.0](#4120-beta) | `beta` | -| [4.11.1](#4111-stable) | `stable` | +| [4.11.1](#4111-stable) | `stable` | Nov 14, 2023 | [4.11.0](#4110) | | Sep 15, 2023 | [4.10.0](#4100) | | May 21, 2023 | [4.9.0](#490) | | Dec 29, 2022 @@ -69,8 +69,9 @@ The table below shows which release corresponds to each branch, and what date th | [2.2.0](#220) | | Jan 5, 2015 ## 4.13.0 (`dev`) +- [#2281][2281] FIX: Getting right amount of data for search fix - +[2281]: https://github.com/Gallopsled/pwntools/pull/2281 ## 4.12.0 (`beta`) - [#2202][2202] Fix `remote` and `listen` in sagemath @@ -94,11 +95,13 @@ The table below shows which release corresponds to each branch, and what date th - [#2271][2271] FIX: Generated shebang with path to python invalid if path contains spaces - [#2272][2272] Fix `tube.clean_and_log` not logging buffered data - [#2281][2281] FIX: Getting right amount of data for search fix +- [#2287][2287] Fix `_countdown_handler` not invoking `timeout_change` - [#2294][2294] Fix atexit SEGV in aarch64 loader [2271]: https://github.com/Gallopsled/pwntools/pull/2271 [2272]: https://github.com/Gallopsled/pwntools/pull/2272 [2281]: https://github.com/Gallopsled/pwntools/pull/2281 +[2287]: https://github.com/Gallopsled/pwntools/pull/2287 [2294]: https://github.com/Gallopsled/pwntools/pull/2294 ## 4.11.0 diff --git a/pwnlib/version.py b/pwnlib/version.py index 6c387e498..efbed2e4c 100644 --- a/pwnlib/version.py +++ b/pwnlib/version.py @@ -1 +1 @@ -__version__ = '4.11.0' +__version__ = '4.11.1' diff --git a/setup.py b/setup.py index a17090ee9..65cb5c3cd 100755 --- a/setup.py +++ b/setup.py @@ -61,7 +61,7 @@ sys.exit(-1) setup( - version = '4.11.0', + version = '4.11.1', data_files = [('pwntools-doc', glob.glob('*.md') + glob.glob('*.txt')), ],