Skip to content

Commit 92ad1a4

Browse files
Release 3.9.0
1 parent 3e163e9 commit 92ad1a4

File tree

4 files changed

+19
-8
lines changed

4 files changed

+19
-8
lines changed

CHANGELOG.md

Lines changed: 16 additions & 5 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-
| [3.10.0](#3100) | `dev` | Oct 21, 2017 (planned)
13-
| [3.9.0](#390) | `beta` | Sep 9, 2017 (planned)
14-
| [3.8.0](#380) | `stable` | Jul 29, 2017
12+
| [3.11.0](#3110) | `dev` | Dec 2, 2017 (planned)
13+
| [3.10.0](#3100) | `beta` | Oct 21, 2017 (planned)
14+
| [3.9.0](#390) | `stable` | Sep 11, 2017
15+
| [3.8.0](#380) | | Jul 29, 2017
1516
| [3.7.1](#371) | | Jul 14, 2017
1617
| [3.7.0](#370) | | Jun 19, 2017
1718
| [3.6.1](#361) | | May 12, 2017
@@ -36,13 +37,23 @@ The table below shows which release corresponds to each branch, and what date th
3637
| [3.0.0](#300) | | Aug 20, 2016
3738
| [2.2.0](#220) | | Jan 5, 2015
3839

40+
## 3.11.0
41+
42+
To be released on Dec 2, 2017.
43+
3944
## 3.10.0
4045

41-
To be released on Sep 8, 2017.
46+
To be released on Oct 21, 2017.
4247

4348
## 3.9.0
4449

45-
To be released on Sep 8, 2017.
50+
- [#1003][1003] Make `concat_all` faster while also simplifying it's logic
51+
- [#1014][1014] Fix for overwritten env when parsing core file
52+
- [#1023][1023] Fixes to Travis CI
53+
54+
[1003]: https://github.com/Gallopsled/pwntools/pull/1003
55+
[1014]: https://github.com/Gallopsled/pwntools/pull/1014
56+
[1023]: https://github.com/Gallopsled/pwntools/pull/1023
4657

4758
## 3.8.0
4859

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.8.0-green.svg?style=flat)](https://pypi.python.org/pypi/pwntools/)
5+
[![PyPI](https://img.shields.io/badge/pypi-v3.9.0-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.0beta0'
1+
__version__ = '3.9.0'

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.0beta0',
89+
version = '3.9.0',
9090
data_files = [('',
9191
glob.glob('*.md') + glob.glob('*.txt')),
9292
],

0 commit comments

Comments
 (0)