diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2012-10-31 12:32:13 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2012-10-31 12:32:13 +1300 |
commit | 3e3c5af00620a8ff1ebcc4e8623b86c3c5c29368 (patch) | |
tree | 5dceb55d676e0c824514b69388bc4650bc079c21 | |
parent | 3f50930dc06a980ac5dcf012fa23ecc0a70ce1b4 (diff) | |
download | mitmproxy-3e3c5af00620a8ff1ebcc4e8623b86c3c5c29368.tar.gz mitmproxy-3e3c5af00620a8ff1ebcc4e8623b86c3c5c29368.tar.bz2 mitmproxy-3e3c5af00620a8ff1ebcc4e8623b86c3c5c29368.zip |
Bump version, update CHANGELOG
-rw-r--r-- | CHANGELOG | 29 | ||||
-rw-r--r-- | libpathod/version.py | 2 |
2 files changed, 30 insertions, 1 deletions
@@ -1,3 +1,32 @@ +31 October 2012: pathod 0.3: + + A release focusing on shoring up our fuzzing capabilities, especially with + pathoc. + + * pathoc -q and -r options, output full request and response text. + + * pathod -q and -r options, add full request and response text to pathod's + log buffer. + + * pathoc and pathod -x option, makes -q and -r options log in hex dump + format. + + * pathoc -C option, specify response codes to ignore. + + * pathoc -T option, instructs pathoc to ignore timeouts. + + * pathoc -o option, a one-shot mode that exits after the first non-ignored + response. + + * pathoc and pathod -e option, which explains the resulting message by + expanding random and generated portions, and logging a reproducible + specification. + + * Major internal refactoring and cleanup. + + * Many bugfixes. + + 22 August 2012: pathod 0.2: * Add pathoc, a pathological HTTP client. diff --git a/libpathod/version.py b/libpathod/version.py index 0faffda9..746c85a5 100644 --- a/libpathod/version.py +++ b/libpathod/version.py @@ -1,4 +1,4 @@ -IVERSION = (0, 2, 1) +IVERSION = (0, 3, 0) VERSION = ".".join(str(i) for i in IVERSION) NAME = "pathod" NAMEVERSION = NAME + " " + VERSION |