Skip to content

Commit

Permalink
Release 4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Arusekk committed May 8, 2020
1 parent a8e594d commit dd1f776
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 12 deletions.
27 changes: 19 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ The table below shows which release corresponds to each branch, and what date th

| Version | Branch | Release Date |
| ---------------- | -------- | ---------------------- |
| [4.2.0](#420) | `dev` | Feb 10, 2020 (planned)
| [4.1.0](#410) | `beta` | Jan 30, 2020 (planned)
| [4.0.1](#401) | `stable` | Jan 22, 2020
| [4.3.0](#430) | `dev` | Jun 30, 2020 (planned)
| [4.2.0](#420) | `beta` | May 30, 2020 (planned)
| [4.1.0](#410) | `stable` | May 8, 2020
| [4.0.1](#401) | | Jan 22, 2020
| [4.0.0](#400) | | Jan 09, 2020
| [3.13.0](#3130) | | Nov 5, 2019
| [3.12.1](#3121) | | Sept 17, 2018
Expand Down Expand Up @@ -46,13 +47,23 @@ The table below shows which release corresponds to each branch, and what date th
| [3.0.0](#300) | | Aug 20, 2016
| [2.2.0](#220) | | Jan 5, 2015

## 4.2.0 (`dev`)
## 4.3.0 (`dev`)

To be released on Feb 10, 2020.
To be released on Jun 30, 2020.

## 4.1.0 (`beta`)
## 4.2.0 (`beta`)

To be released on Jan 30, 2020.
To be released on May 30, 2020.

- #1436 Add ret2dlresolve automation
- [fecf9f] tubes.ssh.process() no longer requires python 2 installed on remote (still requires python, though)
- Miscellanous improvements to DynElf and fmtstr leaker (see examples/fmtstr/exploit2.py)
- #1454 Support for windows console colors

[fecf9f]: http://github.com/Gallopsled/pwntols/commit/fecf9f


## 4.1.0 (`stable`)

- [#1316][1316] Fix connect shellcraft in python 3
- [#1323][1323] Fix issues related with debugging
Expand All @@ -64,7 +75,7 @@ To be released on Jan 30, 2020.
[1241]: https://github.com/Gallopsled/pwntools/pulls/1218
[1218]: https://github.com/Gallopsled/pwntools/pulls/1218

## 4.0.1 (`stable`)
## 4.0.1

- [#1412][1412] `recvline_pred()` and similar do not reorder data
- Bypass unicorn-engine/unicorn#1100 and unicorn-engine/unicorn#1170 requiring unstable package
Expand Down
4 changes: 2 additions & 2 deletions pwnlib/adb/adb.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def current_device(any=False):
>>> device = adb.current_device(any=True)
>>> device
AdbDevice(serial='emulator-5554', type='device', port='emulator', product='sdk_phone_armv7', model='sdk phone armv7', device='generic')
AdbDevice(serial='emulator-5554', type='device', port='emulator', product='sdk_google_phone_armv7', model='sdk google phone armv7', device='generic')
>>> device.port
'emulator'
"""
Expand Down Expand Up @@ -228,7 +228,7 @@ class AdbDevice(Device):
>>> device.os
'android'
>>> device.product
'sdk_phone_armv7'
'sdk_google_phone_armv7'
>>> device.serial
'emulator-5554'
"""
Expand Down
2 changes: 1 addition & 1 deletion pwnlib/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '4.1.0beta1'
__version__ = '4.1.0'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
name = 'pwntools',
python_requires = '>=2.7',
packages = find_packages(),
version = '4.1.0beta1',
version = '4.1.0',
data_files = [('',
glob.glob('*.md') + glob.glob('*.txt')),
],
Expand Down

0 comments on commit dd1f776

Please sign in to comment.