Skip to content

Commit c45e92d

Browse files
committed
Release 4.9.0
1 parent a76c7b0 commit c45e92d

File tree

3 files changed

+23
-8
lines changed

3 files changed

+23
-8
lines changed

CHANGELOG.md

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ The table below shows which release corresponds to each branch, and what date th
99

1010
| Version | Branch | Release Date |
1111
| ---------------- | -------- | ---------------------- |
12-
| [4.10.0](#4100) | `dev` |
13-
| [4.9.0](#490) | `beta` |
14-
| [4.8.0](#480) | `stable` | Apr 21, 2022
12+
| [4.11.0](#4110) | `dev` |
13+
| [4.10.0](#4100) | `beta` |
14+
| [4.9.0](#490) | `stable` | Dec 29, 2022
15+
| [4.8.0](#480) | | Apr 21, 2022
1516
| [4.7.1](#471) | | Apr 20, 2022
1617
| [4.7.0](#470) | | Nov 15, 2021
1718
| [4.6.0](#460) | | Jul 12, 2021
@@ -64,11 +65,25 @@ The table below shows which release corresponds to each branch, and what date th
6465
| [3.0.0](#300) | | Aug 20, 2016
6566
| [2.2.0](#220) | | Jan 5, 2015
6667

67-
## 4.10.0 (`dev`)
68+
## 4.11.0 (`dev`)
6869

6970

7071

71-
## 4.9.0 (`beta`)
72+
## 4.10.0 (`beta`)
73+
74+
- [#2062][2062] make pwn cyclic -l work with entry larger than 4 bytes
75+
- [#2092][2092] shellcraft: dup() is now called dupio() consistently across all supported arches
76+
- [#2093][2093] setresuid() in shellcraft uses current euid by default
77+
- [#2125][2125] Allow tube.recvregex to return capture groups
78+
- [#2144][2144] Removes `p2align 2` `asm()` headers from `x86-32`, `x86-64` and `mips` architectures to avoid inconsistent instruction length when patching binaries
79+
80+
[2062]: https://github.com/Gallopsled/pwntools/pull/2062
81+
[2092]: https://github.com/Gallopsled/pwntools/pull/2092
82+
[2093]: https://github.com/Gallopsled/pwntools/pull/2093
83+
[2125]: https://github.com/Gallopsled/pwntools/pull/2125
84+
[2144]: https://github.com/Gallopsled/pwntools/pull/2144
85+
86+
## 4.9.0 (`stable`)
7287

7388
- [#1975][1975] Add libcdb commandline tool
7489
- [#1979][1979] Add `js_escape()` and `js_unescape()` to `util.fiddling`
@@ -92,7 +107,7 @@ The table below shows which release corresponds to each branch, and what date th
92107
[2123]: https://github.com/Gallopsled/pwntools/pull/2123
93108
[2124]: https://github.com/Gallopsled/pwntools/pull/2124
94109

95-
## 4.8.0 (`stable`)
110+
## 4.8.0
96111

97112
- [#1922][1922] Fix logic in `wait_for_debugger`
98113
- [#1828][1828] libcdb: Load debug info and unstrip libc binary

pwnlib/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '4.9.0beta0'
1+
__version__ = '4.9.0'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
name = 'pwntools',
9090
python_requires = '>=2.7',
9191
packages = find_packages(),
92-
version = '4.9.0beta0',
92+
version = '4.9.0',
9393
data_files = [('pwntools-doc',
9494
glob.glob('*.md') + glob.glob('*.txt')),
9595
],

0 commit comments

Comments
 (0)