Skip to content

Commit 1ab07de

Browse files
Release 3.7.1
1 parent 55016fb commit 1ab07de

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

CHANGELOG.md

Lines changed: 12 additions & 5 deletions
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.9.0](#390) | `dev` | Sep 8, 2017 (planned)
1313
| [3.8.0](#380) | `beta` | Jul 28, 2017 (planned)
14-
| [3.7.0](#370) | `stable` | Jun 19, 2017
14+
| [3.7.1](#371) | `stable` | Jul 14, 2017
15+
| [3.7.0](#370) | | Jun 19, 2017
1516
| [3.6.1](#361) | | May 12, 2017
1617
| [3.6.0](#360) | | May 8, 2017
1718
| [3.5.1](#351) | | Apr 15, 2017
@@ -45,17 +46,23 @@ To be released on Jul 28, 2017.
4546
- [#981][981] Fixed RELRO detection logic
4647
- [#986][986] Enhancements to DynELF for controlling usage of LibcDB
4748

48-
[981]: https://github.com/Gallopsled/pwntools/issues/981
49-
[986]: https://github.com/Gallopsled/pwntools/issues/986
49+
[981]: https://github.com/Gallopsled/pwntools/pull/981
50+
[986]: https://github.com/Gallopsled/pwntools/pull/986
51+
52+
## 3.7.1
53+
54+
- [#998][998] Fix a bug where integer values could not be set in `.pwn.conf`.
55+
56+
[998]: https://github.com/Gallopsled/pwntools/pull/998
5057

5158
## 3.7.0
5259

5360
- [#933][933] DynELF works better with different base addresses
5461
- [#952][952] A few small fixes were made to `pwn template`, and the CRC database was updated.
5562
- [5c72d62c][5c72d62c] Updated the CRC database
5663

57-
[933]: https://github.com/Gallopsled/pwntools/issues/933
58-
[952]: https://github.com/Gallopsled/pwntools/issues/952
64+
[933]: https://github.com/Gallopsled/pwntools/pull/933
65+
[952]: https://github.com/Gallopsled/pwntools/pull/952
5966
[5c72d62c]: https://github.com/Gallopsled/pwntools/commit/5c72d62c
6067

6168
## 3.6.1

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

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.0',
89+
version = '3.7.1',
9090
data_files = [('',
9191
glob.glob('*.md') + glob.glob('*.txt')),
9292
],

0 commit comments

Comments
 (0)