Release 1.7.0.

This commit is contained in:
Andris Raugulis 2016-10-26 19:02:13 +03:00
parent 8c24fc01e8
commit e42064b9b9
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ usage: ssh-audit.py [-1246pbnvl] <host>
![screenshot](https://cloud.githubusercontent.com/assets/7356025/19233757/3e09b168-8ef0-11e6-91b4-e880bacd0b8a.png)
## ChangeLog
### v1.x.x (2016-xx-xx)
### v1.7.0 (2016-10-26)
- implement options to allow specify IPv4/IPv6 usage and order of precedence
- implement option to specify remote port (old behavior kept for compatibility)
- add colors support for Microsoft Windows via optional colorama dependency

View File

@ -26,7 +26,7 @@
from __future__ import print_function
import os, io, sys, socket, struct, random, errno, getopt, re, hashlib, base64
VERSION = 'v1.6.1.dev'
VERSION = 'v1.7.0'
if sys.version_info >= (3,): # pragma: nocover
StringIO, BytesIO = io.StringIO, io.BytesIO