diff --git a/ChangeLog b/ChangeLog index 0b8a239..647860e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,18 @@ +2015-03-25 Martin Gallo + + * - Version v0.1.6 released. + * - Requirements now handled by setuptools. + * - Test building with clang on travis. + * - Cleared installation docs. + * pysap/SAPNI.py: Made clients an instance variable in SAPNIServer. + * pysap/SAPRouter.py: Added unknown field. + * examples/diag_dos_exploit.py: Small fix. + * examples/router_admin.py: Small fix on response handling. + * examples/router_portfw.py: Added support for specify talk mode when + requesting routes. + * examples/router_scanner.py: Added support for specify talk mode when + requesting routes. + 2015-01-16 Martin Gallo * - Version v0.1.5 released. diff --git a/README.md b/README.md index 8a2d263..e965598 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Copyright (C) 2015 by Martin Gallo, Core Security The library was designed and developed by Martin Gallo from the Security Consulting Services team of Core Security. -Version 0.1.6.dev0 (XXX 2015) +Version 0.1.6 (March 2015) Overview diff --git a/pysap/__init__.py b/pysap/__init__.py index e6d8ab6..2cbafc6 100644 --- a/pysap/__init__.py +++ b/pysap/__init__.py @@ -39,7 +39,7 @@ __title__ = 'pysap' """The title of the library""" -__version__ = '0.1.6.dev0' +__version__ = '0.1.6' """The version of pysap""" __url__ = "http://corelabs.coresecurity.com/index.php?module=Wiki&action=view&type=tool&name=pysap"