From 1a9ba295ce9653635169b7b2f4acacc35dadfe9b Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Sat, 8 Nov 2014 14:42:10 +1300 Subject: [PATCH] Changelog, remove entry points in favor of scripts --- CHANGELOG | 9 +++++++++ setup.py | 9 +-------- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 55b11342f..2de445b44 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,12 @@ +7 November 2014: pathod 0.11: + + * Hugely improved SSL support, including dynamic generation of certificates + using the mitproxy cacert + * pathoc -S dumps information on the remote SSL certificate chain + * Big improvements to fuzzing, including random spec selection and memoization to avoid repeating randomly generated patterns + * Reflected patterns, allowing you to embed a pathod server response specification in a pathoc request, resolving both on client side. This makes fuzzing proxies and other intermediate systems much better. + + 25 August 2013: pathod 0.9.2: * Adapt to interface changes in netlib diff --git a/setup.py b/setup.py index 302b2db62..fc350ae24 100644 --- a/setup.py +++ b/setup.py @@ -35,14 +35,7 @@ setup( packages=find_packages(), include_package_data=True, - - entry_points={ - 'console_scripts': [ - "pathod = libpathod.main:pathod", - "pathoc = libpathod.main:pathoc" - ] - }, - + scripts = ["pathod", "pathoc"], install_requires=[ 'netlib>=%s' % version.MINORVERSION, # It's INSANE that we have to do this, but...