Skip to content

Commit ac38687

Browse files
author
Mathias Svensson
committed
Release 3.5.1
1 parent 4f08b6d commit ac38687

4 files changed

Lines changed: 13 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 10 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.7.0](#350) | `dev` | Jun 17, 2017 (planned)
1313
| [3.6.0](#350) | `beta` | May 6, 2017 (planned)
14-
| [3.5.0](#350) | `stable` | Mar 26, 2017
14+
| [3.5.1](#351) | `stable` | Apr 15, 2017
15+
| [3.5.0](#350) | | Mar 26, 2017
1516
| [3.4.1](#341) | | Feb 17, 2017
1617
| [3.4.0](#340) | | Feb 13, 2017
1718
| [3.3.4](#334) | | Jan 12, 2016
@@ -59,6 +60,14 @@ To be released on May 6, 2017.
5960
[905]: https://github.com/Gallopsled/pwntools/pull/905
6061
[919]: https://github.com/Gallopsled/pwntools/pull/919
6162

63+
## 3.5.1
64+
65+
- [#945][945] Speed up ssh via caching checksec results (fixes [#944][944])
66+
- [#950][950] Fixes a bug where setting `context.arch` does not have an effect on `adb.compile()` output architecture
67+
68+
[944]: https://github.com/Gallopsled/pwntools/issues/944
69+
[945]: https://github.com/Gallopsled/pwntools/pull/945
70+
[950]: https://github.com/Gallopsled/pwntools/pull/950
6271

6372
## 3.5.0
6473

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
setup(
8686
name = 'pwntools',
8787
packages = find_packages(),
88-
version = '3.5.0',
88+
version = '3.5.1',
8989
data_files = [('',
9090
glob.glob('*.md') + glob.glob('*.txt')),
9191
],

0 commit comments

Comments
 (0)