Skip to content

Commit 2f7f0de

Browse files
author
Mathias Svensson
committed
Release 3.3.4
1 parent 16b507e commit 2f7f0de

4 files changed

Lines changed: 16 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 13 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.5.0](#350) | `dev` | Mar 18, 2017 (planned)
1313
| [3.4.0](#340) | `beta` | Feb 4, 2017 (planned)
14-
| [3.3.3](#333) | `stable` | Jan 10, 2016
14+
| [3.3.4](#334) | `stable` | Jan 12, 2016
15+
| [3.3.3](#333) | | Jan 10, 2016
1516
| [3.3.2](#332) | | Jan 10, 2016
1617
| [3.3.1](#331) | | Jan 10, 2016
1718
| [3.3.0](#330) | | Dec 24, 2016
@@ -34,6 +35,17 @@ To be released on Mar 18, 2017.
3435

3536
To be released on Feb 4, 2017.
3637

38+
## 3.3.4
39+
40+
- [#850][850] and [#846][846] fix issues with `hexdump` and the `phd` command-line utility, when using pipes (e.g. `echo foo | phd`)
41+
- [#852][852] Fixes register ordering in `regsort`
42+
- [#853][853] Fixes the registers restored in `shellcraft.amd64.popad`
43+
44+
[846]: https://github.com/gallopsled/pwntools/pull/846
45+
[850]: https://github.com/gallopsled/pwntools/pull/850
46+
[852]: https://github.com/gallopsled/pwntools/pull/852
47+
[853]: https://github.com/gallopsled/pwntools/pull/853
48+
3749
## 3.3.3
3850

3951
- [#843][843] fixed a bug in `amd64.mov`.

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
setup(
8484
name = 'pwntools',
8585
packages = find_packages(),
86-
version = '3.3.3',
86+
version = '3.3.4',
8787
data_files = [('',
8888
glob.glob('*.md') + glob.glob('*.txt')),
8989
],

0 commit comments

Comments
 (0)