Skip to content

Commit 082c55d

Browse files
committed
Release 4.10.0beta0
2 parents 7673ce8 + c45e92d commit 082c55d

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,7 +65,7 @@ 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
- [#2062][2062] make pwn cyclic -l work with entry larger than 4 bytes
7071
- [#2092][2092] shellcraft: dup() is now called dupio() consistently across all supported arches
@@ -78,7 +79,21 @@ The table below shows which release corresponds to each branch, and what date th
7879
[2125]: https://github.com/Gallopsled/pwntools/pull/2125
7980
[2144]: https://github.com/Gallopsled/pwntools/pull/2144
8081

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

8398
- [#1975][1975] Add libcdb commandline tool
8499
- [#1979][1979] Add `js_escape()` and `js_unescape()` to `util.fiddling`
@@ -102,7 +117,7 @@ The table below shows which release corresponds to each branch, and what date th
102117
[2123]: https://github.com/Gallopsled/pwntools/pull/2123
103118
[2124]: https://github.com/Gallopsled/pwntools/pull/2124
104119

105-
## 4.8.0 (`stable`)
120+
## 4.8.0
106121

107122
- [#1922][1922] Fix logic in `wait_for_debugger`
108123
- [#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.10.0dev'
1+
__version__ = '4.10.0beta0'

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.10.0dev',
92+
version = '4.10.0beta0',
9393
data_files = [('pwntools-doc',
9494
glob.glob('*.md') + glob.glob('*.txt')),
9595
],

0 commit comments

Comments
 (0)