Skip to content

Commit 5a37016

Browse files
author
Mathias Svensson
committed
Release 3.3.0
1 parent 253ab78 commit 5a37016

4 files changed

Lines changed: 11 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 8 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.4.0](#340) | `dev` | Feb 4, 2017 (planned)
13-
| [3.3.0](#330) | `beta` | Dec 24, 2016 (planned)
14-
| [3.2.1](#321) | `stable` | Dec 24, 2016
12+
| [3.5.0](#350) | `dev` | Mar 18, 2017 (planned)
13+
| [3.4.0](#340) | `beta` | Feb 4, 2017 (planned)
14+
| [3.3.0](#330) | `stable` | Dec 24, 2016
15+
| [3.2.1](#321) | | Dec 24, 2016
1516
| [3.2.0](#320) | | Nov 12, 2016
1617
| [3.1.1](#311) | | Oct 23, 2016
1718
| [3.1.0](#310) | | Oct 2, 2016
@@ -22,14 +23,16 @@ The table below shows which release corresponds to each branch, and what date th
2223
| [3.0.0](#300) | | Aug 20, 2016
2324
| [2.2.0](#220) | | Jan 5, 2015
2425

26+
## 3.5.0
27+
28+
To be released on Mar 18, 2017.
29+
2530
## 3.4.0
2631

2732
To be released on Feb 4, 2017.
2833

2934
## 3.3.0
3035

31-
To be released on Dec 24, 2016.
32-
3336
- [b198ec8][b198ec8] Added `tube.stream()` function, which is like `tube.interact()` without a prompt or keyboard input.
3437
+ Effectively, this is similar to `cat file` and just prints data as fast as it is received.
3538
- [aec3fa6][aec3fa6] Disable update checks against GitHub

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

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.0beta0',
86+
version = '3.3.0',
8787
data_files = [('',
8888
glob.glob('*.md') + glob.glob('*.txt')),
8989
],

0 commit comments

Comments
 (0)