Skip to content

Commit f0ffaee

Browse files
committed
Release 4.11.0beta0
2 parents cb5b8af + 9dfc4d7 commit f0ffaee

File tree

3 files changed

+26
-8
lines changed

3 files changed

+26
-8
lines changed

CHANGELOG.md

Lines changed: 24 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.11.0](#4110) | `dev` |
13-
| [4.10.0](#4100) | `beta` |
14-
| [4.9.0](#490) | `stable` | Dec 29, 2022
12+
| [4.12.0](#4120) | `dev` |
13+
| [4.11.0](#4110) | `beta` |
14+
| [4.10.0](#4100) | `stable` | May 21, 2023
15+
| [4.9.0](#490) | | Dec 29, 2022
1516
| [4.8.0](#480) | | Apr 21, 2022
1617
| [4.7.1](#471) | | Apr 20, 2022
1718
| [4.7.0](#470) | | Nov 15, 2021
@@ -65,7 +66,11 @@ The table below shows which release corresponds to each branch, and what date th
6566
| [3.0.0](#300) | | Aug 20, 2016
6667
| [2.2.0](#220) | | Jan 5, 2015
6768

68-
## 4.11.0 (`dev`)
69+
## 4.12.0 (`dev`)
70+
71+
72+
73+
## 4.11.0 (`beta`)
6974

7075
- [#2185][2185] make fmtstr module able to create payload without $ notation
7176
- [#2062][2062] make pwn cyclic -l work with entry larger than 4 bytes
@@ -89,21 +94,34 @@ The table below shows which release corresponds to each branch, and what date th
8994
[2186]: https://github.com/Gallopsled/pwntools/pull/2186
9095
[2129]: https://github.com/Gallopsled/pwntools/pull/2129
9196

92-
## 4.10.0 (`beta`)
97+
## 4.10.0 (`stable`)
98+
99+
In memoriam — [Zach Riggle][zach] — long time contributor and maintainer of Pwntools.
93100

101+
- [#2185][2185] make fmtstr module able to create payload without $ notation
94102
- [#2062][2062] make pwn cyclic -l work with entry larger than 4 bytes
95103
- [#2092][2092] shellcraft: dup() is now called dupio() consistently across all supported arches
96104
- [#2093][2093] setresuid() in shellcraft uses current euid by default
105+
- [#2103][2103] Add search for libc binary by leaked function addresses `libcdb.search_by_symbol_offsets()`
97106
- [#2125][2125] Allow tube.recvregex to return capture groups
98107
- [#2144][2144] Removes `p2align 2` `asm()` headers from `x86-32`, `x86-64` and `mips` architectures to avoid inconsistent instruction length when patching binaries
108+
- [#2177][2177] Support for RISC-V 64-bit architecture
109+
- [#2186][2186] Enhance `ELF.nx` and `ELF.execstack`
110+
- [#2129][2129] Handle `context.newline` correctly when typing in `tube.interactive()`
99111

112+
[2185]: https://github.com/Gallopsled/pwntools/pull/2185
100113
[2062]: https://github.com/Gallopsled/pwntools/pull/2062
101114
[2092]: https://github.com/Gallopsled/pwntools/pull/2092
102115
[2093]: https://github.com/Gallopsled/pwntools/pull/2093
116+
[2103]: https://github.com/Gallopsled/pwntools/pull/2103
103117
[2125]: https://github.com/Gallopsled/pwntools/pull/2125
104118
[2144]: https://github.com/Gallopsled/pwntools/pull/2144
119+
[2177]: https://github.com/Gallopsled/pwntools/pull/2177
120+
[2186]: https://github.com/Gallopsled/pwntools/pull/2186
121+
[2129]: https://github.com/Gallopsled/pwntools/pull/2129
122+
[zach]: https://github.com/zachriggle
105123

106-
## 4.9.0 (`stable`)
124+
## 4.9.0
107125

108126
- [#1975][1975] Add libcdb commandline tool
109127
- [#1979][1979] Add `js_escape()` and `js_unescape()` to `util.fiddling`

pwnlib/version.py

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
sys.exit(-1)
6060

6161
setup(
62-
version = '4.11.0dev',
62+
version = '4.11.0beta0',
6363
data_files = [('pwntools-doc',
6464
glob.glob('*.md') + glob.glob('*.txt')),
6565
],

0 commit comments

Comments
 (0)