Skip to content

Commit 9176842

Browse files
Release 3.9.1
1 parent af2f8b4 commit 9176842

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

CHANGELOG.md

Lines changed: 12 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
| [3.11.0](#3110) | `dev` | Dec 2, 2017 (planned)
1313
| [3.10.0](#3100) | `beta` | Oct 21, 2017 (planned)
14-
| [3.9.0](#390) | `stable` | Sep 11, 2017
14+
| [3.9.1](#391) | `stable` | Sep 28, 2017
15+
| [3.9.0](#390) | | Sep 11, 2017
1516
| [3.8.0](#380) | | Jul 29, 2017
1617
| [3.7.1](#371) | | Jul 14, 2017
1718
| [3.7.0](#370) | | Jun 19, 2017
@@ -45,6 +46,16 @@ To be released on Dec 2, 2017.
4546

4647
To be released on Oct 21, 2017.
4748

49+
## 3.9.1
50+
51+
- [#1038][1038] Fix an issue with `process()` where glibc would buffer data internally, causing a hang on `select()`
52+
- [#1036][1036] Fix Travis CI logging verbosity
53+
- [#1029][1029] Fix some `unicode` issues when using the `readline` command history in `tube.interactive()`
54+
55+
[1038]: https://github.com/Gallopsled/pwntools/pull/1038
56+
[1036]: https://github.com/Gallopsled/pwntools/pull/1036
57+
[1029]: https://github.com/Gallopsled/pwntools/pull/1029
58+
4859
## 3.9.0
4960

5061
- [#1003][1003] Make `concat_all` faster while also simplifying it's logic

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
![pwntools logo](https://github.com/Gallopsled/pwntools/blob/stable/docs/source/logo.png?raw=true)
33

44
[![Docs](https://readthedocs.org/projects/pwntools/badge/?version=stable)](https://docs.pwntools.com/)
5-
[![PyPI](https://img.shields.io/badge/pypi-v3.9.0-green.svg?style=flat)](https://pypi.python.org/pypi/pwntools/)
5+
[![PyPI](https://img.shields.io/badge/pypi-v3.9.1-green.svg?style=flat)](https://pypi.python.org/pypi/pwntools/)
66
[![Travis](https://travis-ci.org/Gallopsled/pwntools.svg)](https://travis-ci.org/Gallopsled/pwntools)
77
[![Coveralls](https://img.shields.io/coveralls/Gallopsled/pwntools/dev.svg)](https://coveralls.io/github/Gallopsled/pwntools?branch=dev)
88
[![Twitter](https://img.shields.io/badge/twitter-pwntools-4099FF.svg?style=flat)](https://twitter.com/pwntools)

pwnlib/version.py

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
setup(
8787
name = 'pwntools',
8888
packages = find_packages(),
89-
version = '3.9.0',
89+
version = '3.9.1',
9090
data_files = [('',
9191
glob.glob('*.md') + glob.glob('*.txt')),
9292
],

0 commit comments

Comments
 (0)