Skip to content

Commit bf02305

Browse files
committed
Release 4.6.0beta0
2 parents c8681de + 34bcb02 commit bf02305

File tree

3 files changed

+37
-6
lines changed

3 files changed

+37
-6
lines changed

CHANGELOG.md

Lines changed: 35 additions & 4 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.6.0](#460) | `dev` | May 29, 2020 (planned)
13-
| [4.5.0](#450) | `beta` | Apr 29, 2020 (planned)
14-
| [4.4.0](#440) | `stable` | Mar 29, 2020
12+
| [4.7.0](#470) | `dev` | May 29, 2020 (planned)
13+
| [4.6.0](#460) | `beta` | May 29, 2020 (planned)
14+
| [4.5.0](#450) | `stable` | Apr 30, 2020
15+
| [4.4.0](#440) | | Mar 29, 2020
1516
| [4.3.1](#431) | | Nov 29, 2020
1617
| [4.3.0](#430) | | Oct 20, 2020
1718
| [4.2.0](#420) | | Jul 3, 2020
@@ -58,7 +59,11 @@ The table below shows which release corresponds to each branch, and what date th
5859
| [3.0.0](#300) | | Aug 20, 2016
5960
| [2.2.0](#220) | | Jan 5, 2015
6061

62+
<<<<<<< HEAD
6163
## 4.6.0 (`dev`)
64+
=======
65+
## 4.7.0 (`dev`)
66+
>>>>>>> stable
6267
6368
- [#1429][1429] Add a mechanism for ret2csu (originally #1138)
6469
- [#1566][1566] Add `ignore_config` argument to `pwnlib.tubes.ssh` and improve `allow_agent` implementation
@@ -80,7 +85,33 @@ The table below shows which release corresponds to each branch, and what date th
8085
[1776]: https://github.com/Gallopsled/pwntools/pull/1776
8186
[1846]: https://github.com/Gallopsled/pwntools/pull/1846
8287

88+
<<<<<<< HEAD
8389
## 4.5.0 (`beta`)
90+
=======
91+
## 4.6.0 (`beta`)
92+
93+
- [#1429][1429] Add a mechanism for ret2csu (originally #1138)
94+
- [#1566][1566] Add `ignore_config` argument to `pwnlib.tubes.ssh` and improve `allow_agent` implementation
95+
- [#1652][1652] Add `process.readmem` and `process.writemem`
96+
- [#1739][1739] Add/fix shellcraft.linux.kill() / shellcraft.linux.killparent()
97+
- [#1746][1746] Prefer Python3 over Python2 for spawning remote processes over SSH
98+
- [#1751][1751] Fix process() with executable relative to cwd
99+
- [#1753][1753] major change: less unconditional imports in pwnlib
100+
- [#1776][1776] mips: do not use $t0 temporary variable in dupio
101+
- [#1846][1846] support launching GDB in more different terminals
102+
103+
[1429]: https://github.com/Gallopsled/pwntools/pull/1429
104+
[1566]: https://github.com/Gallopsled/pwntools/pull/1566
105+
[1652]: https://github.com/Gallopsled/pwntools/pull/1652
106+
[1739]: https://github.com/Gallopsled/pwntools/pull/1739
107+
[1746]: https://github.com/Gallopsled/pwntools/pull/1746
108+
[1751]: https://github.com/Gallopsled/pwntools/pull/1751
109+
[1753]: https://github.com/Gallopsled/pwntools/pull/1753
110+
[1776]: https://github.com/Gallopsled/pwntools/pull/1776
111+
[1846]: https://github.com/Gallopsled/pwntools/pull/1846
112+
113+
## 4.5.0 (`stable`)
114+
>>>>>>> stable
84115
85116
- [#1261][1261] Misc `run_in_new_terminal` improvements (notably gdb terminated by default)
86117
- [#1695][1695] Allow using GDB Python API
@@ -115,7 +146,7 @@ The table below shows which release corresponds to each branch, and what date th
115146
[1833]: https://github.com/Gallopsled/pwntools/pull/1833
116147
[1852]: https://github.com/Gallopsled/pwntools/pull/1852
117148

118-
## 4.4.0 (`stable`)
149+
## 4.4.0
119150

120151
- [#1541][1541] Use `context.newline` for tubes by default
121152
- [#1602][1602] Fix bytes handling in ssh tubes

pwnlib/version.py

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
name = 'pwntools',
8989
python_requires = '>=2.7',
9090
packages = find_packages(),
91-
version = '4.6.0dev',
91+
version = '4.6.0beta0',
9292
data_files = [('pwntools-doc',
9393
glob.glob('*.md') + glob.glob('*.txt')),
9494
],

0 commit comments

Comments
 (0)