Skip to content

Commit 4d529cd

Browse files
author
Mathias Svensson
committed
Release 3.4.1
1 parent e021f57 commit 4d529cd

4 files changed

Lines changed: 15 additions & 4 deletions

File tree

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.6.0](#350) | `dev` | May 6, 2017 (planned)
1313
| [3.5.0](#350) | `beta` | Mar 25, 2017 (planned)
14-
| [3.4.0](#340) | `stable` | Feb 13, 2017
14+
| [3.4.1](#341) | `stable` | Feb 17, 2017
15+
| [3.4.0](#340) | | Feb 13, 2017
1516
| [3.3.4](#334) | | Jan 12, 2016
1617
| [3.3.3](#333) | | Jan 10, 2016
1718
| [3.3.2](#332) | | Jan 10, 2016
@@ -37,6 +38,16 @@ To be released on May 6, 2017.
3738

3839
To be released on Mar 25, 2017.
3940

41+
## 3.4.1
42+
43+
- [#894][894] Fix a bug when using `gdb.debug()` over ssh.
44+
- [e021f57][e021f57] Fix a bug ([#891][891]) in `rop` when needing to insert padding to fix alignment
45+
46+
[e021f57]: https://github.com/Gallopsled/pwntools/commit/e021f57
47+
[894]: https://github.com/Gallopsled/pwntools/pull/894
48+
[891]: https://github.com/Gallopsled/pwntools/issues/891
49+
50+
4051
## 3.4.0
4152

4253
- [#800][800] Add `shell=` option to `ssh.process()`

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
setup(
8181
name = 'pwntools',
8282
packages = find_packages(),
83-
version = '3.4.0',
83+
version = '3.4.1',
8484
data_files = [('',
8585
glob.glob('*.md') + glob.glob('*.txt')),
8686
],

0 commit comments

Comments
 (0)