Skip to content

Commit 52b8f4f

Browse files
Release 3.7.0
1 parent 4552624 commit 52b8f4f

File tree

4 files changed

+24
-11
lines changed

4 files changed

+24
-11
lines changed

CHANGELOG.md

Lines changed: 21 additions & 8 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.8.0](#380) | `dev` | Jul 28, 2017 (planned)
13-
| [3.7.0](#370) | `beta` | Jun 17, 2017 (planned)
14-
| [3.6.1](#361) | `stable` | May 12, 2017
12+
| [3.9.0](#390) | `dev` | Sep 8, 2017 (planned)
13+
| [3.8.0](#380) | `beta` | Jul 28, 2017 (planned)
14+
| [3.7.0](#370) | `stable` | Jun 19, 2017
15+
| [3.6.1](#361) | | May 12, 2017
1516
| [3.6.0](#360) | | May 8, 2017
1617
| [3.5.1](#351) | | Apr 15, 2017
1718
| [3.5.0](#350) | | Mar 26, 2017
@@ -33,17 +34,29 @@ The table below shows which release corresponds to each branch, and what date th
3334
| [3.0.0](#300) | | Aug 20, 2016
3435
| [2.2.0](#220) | | Jan 5, 2015
3536

37+
## 3.9.0
38+
39+
To be released on Sep 8, 2017.
40+
3641
## 3.8.0
3742

38-
To be on Jul 28, 2017.
43+
To be released on Jul 28, 2017.
3944

40-
## 3.7.0
45+
- [#981][981] Fixed RELRO detection logic
46+
- [#986][986] Enhancements to DynELF for controlling usage of LibcDB
4147

42-
To be on Jun 17, 2017.
48+
[981]: https://github.com/Gallopsled/pwntools/issues/981
49+
[986]: https://github.com/Gallopsled/pwntools/issues/986
50+
51+
## 3.7.0
4352

44-
As of May 4, 2017, there have been no new features or major notable changes since 3.6.0.
53+
- [#933][933] DynELF works better with different base addresses
54+
- [#952][952] A few small fixes were made to `pwn template`, and the CRC database was updated.
55+
- [5c72d62c][5c72d62c] Updated the CRC database
4556

46-
A few typos were fixed, a few Linux kernel configuration flags were added, and a few error messages were enhanced.
57+
[933]: https://github.com/Gallopsled/pwntools/issues/933
58+
[952]: https://github.com/Gallopsled/pwntools/issues/952
59+
[5c72d62c]: https://github.com/Gallopsled/pwntools/commit/5c72d62c
4760

4861
## 3.6.1
4962

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.6.1-green.svg?style=flat)](https://pypi.python.org/pypi/pwntools/)
5+
[![PyPI](https://img.shields.io/badge/pypi-v3.7.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.7.0beta1'
1+
__version__ = '3.7.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.7.0beta1',
89+
version = '3.7.0',
9090
data_files = [('',
9191
glob.glob('*.md') + glob.glob('*.txt')),
9292
],

0 commit comments

Comments
 (0)