Skip to content

Commit cde1b89

Browse files
committed
Release 4.7.1
1 parent 17fc0ae commit cde1b89

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed

CHANGELOG.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ The table below shows which release corresponds to each branch, and what date th
1111
| ---------------- | -------- | ---------------------- |
1212
| [4.9.0](#490) | `dev` |
1313
| [4.8.0](#480) | `beta` |
14-
| [4.7.0](#470) | `stable` | Nov 15, 2021
14+
| [4.7.1](#471) | `stable` | Apr 20, 2022
15+
| [4.7.0](#470) | | Nov 15, 2021
1516
| [4.6.0](#460) | | Jul 12, 2021
1617
| [4.5.1](#451) | | May 30, 2021
1718
| [4.5.0](#450) | | Apr 30, 2021
@@ -64,7 +65,15 @@ The table below shows which release corresponds to each branch, and what date th
6465

6566
## 4.9.0 (`dev`)
6667

68+
- [#2011][2011] Fix tube's debug output of same byte compression
69+
- [#2023][2023] Support KDE Konsole in run_in_new_terminal function
70+
- [#2027][2027] Fix ELF.libc_start_main_return with glibc 2.34
71+
- [#2035][2035] Change Buffer's parent class to object
6772

73+
[2011]: https://github.com/Gallopsled/pwntools/pull/2011
74+
[2023]: https://github.com/Gallopsled/pwntools/pull/2023
75+
[2027]: https://github.com/Gallopsled/pwntools/pull/2027
76+
[2035]: https://github.com/Gallopsled/pwntools/pull/2035
6877

6978
## 4.8.0 (`beta`)
7079

@@ -80,9 +89,20 @@ The table below shows which release corresponds to each branch, and what date th
8089

8190
## 4.7.1 (`stable`)
8291

92+
- [#1784][1784] Use temporary cache directory when persistent cache cannot be used
8393
- [#1973][1973] ELF symbols can be looked up by bytes values
94+
- several bugfixes ([#2012][2012], [#2031][2031], [#1912][1912], [#1961][1961],
95+
[#2007][2007], [#2040][2040], [#2051][2051])
8496

97+
[1784]: https://github.com/Gallopsled/pwntools/pull/1784
98+
[1912]: https://github.com/Gallopsled/pwntools/pull/1912
99+
[1961]: https://github.com/Gallopsled/pwntools/pull/1961
85100
[1973]: https://github.com/Gallopsled/pwntools/pull/1973
101+
[2007]: https://github.com/Gallopsled/pwntools/pull/2007
102+
[2012]: https://github.com/Gallopsled/pwntools/pull/2012
103+
[2031]: https://github.com/Gallopsled/pwntools/pull/2031
104+
[2040]: https://github.com/Gallopsled/pwntools/pull/2040
105+
[2051]: https://github.com/Gallopsled/pwntools/pull/2051
86106

87107
## 4.7.0
88108

pwnlib/version.py

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

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

0 commit comments

Comments
 (0)