Skip to content

Commit 01e6970

Browse files
committed
Release 4.12.0beta0
2 parents 92cd969 + 6aaaf84 commit 01e6970

File tree

3 files changed

+15
-14
lines changed

3 files changed

+15
-14
lines changed

CHANGELOG.md

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

69-
## 4.12.0 (`dev`)
70+
## 4.13.0 (`dev`)
71+
72+
73+
74+
## 4.12.0 (`beta`)
7075
- [#2202][2202] Fix `remote` and `listen` in sagemath
7176
- [#2117][2117] Add -p (--prefix) and -s (--separator) arguments to `hex` command
7277
- [#2221][2221] Add shellcraft.sleep template wrapping SYS_nanosleep
@@ -83,26 +88,22 @@ The table below shows which release corresponds to each branch, and what date th
8388
[2257]: https://github.com/Gallopsled/pwntools/pull/2257
8489
[2225]: https://github.com/Gallopsled/pwntools/pull/2225
8590

86-
## 4.11.0 (`beta`)
91+
## 4.11.0 (`stable`)
8792

8893
- [#2185][2185] make fmtstr module able to create payload without $ notation
8994
- [#2103][2103] Add search for libc binary by leaked function addresses `libcdb.search_by_symbol_offsets()`
9095
- [#2177][2177] Support for RISC-V 64-bit architecture
9196
- [#2186][2186] Enhance `ELF.nx` and `ELF.execstack`
9297
- [#2129][2129] Handle `context.newline` correctly when typing in `tube.interactive()`
98+
- [#2214][2214] Fix bug at ssh.py:`download` and `download_file` with relative paths
99+
- [#2241][2241] Fix ssh.process not setting ssh_process.cwd attribute
100+
- [#2261][2261] Fix corefile module after pyelftools update
93101

94102
[2185]: https://github.com/Gallopsled/pwntools/pull/2185
95103
[2103]: https://github.com/Gallopsled/pwntools/pull/2103
96104
[2177]: https://github.com/Gallopsled/pwntools/pull/2177
97105
[2186]: https://github.com/Gallopsled/pwntools/pull/2186
98106
[2129]: https://github.com/Gallopsled/pwntools/pull/2129
99-
100-
## 4.10.1 (`stable`)
101-
102-
- [#2214][2214] Fix bug at ssh.py:`download` and `download_file` with relative paths
103-
- [#2241][2241] Fix ssh.process not setting ssh_process.cwd attribute
104-
- [#2261][2261] Fix corefile module after pyelftools update
105-
106107
[2214]: https://github.com/Gallopsled/pwntools/pull/2214
107108
[2241]: https://github.com/Gallopsled/pwntools/pull/2241
108109
[2261]: https://github.com/Gallopsled/pwntools/pull/2261

pwnlib/version.py

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
sys.exit(-1)
6565

6666
setup(
67-
version = '4.12.0dev',
67+
version = '4.12.0beta0',
6868
data_files = [('pwntools-doc',
6969
glob.glob('*.md') + glob.glob('*.txt')),
7070
],

0 commit comments

Comments
 (0)