diff options
-rw-r--r-- | CHANGELOG | 5 | ||||
-rw-r--r-- | libpathod/templates/index.html | 2 | ||||
-rw-r--r-- | libpathod/version.py | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +25 August 2013: pathod 0.9.2: + + * Adapt to interface changes in netlib + + 15 May 2013: pathod 0.9 (version synced with mitmproxy): * Pathod proxy mode. You can now configure clients to use pathod as an diff --git a/libpathod/templates/index.html b/libpathod/templates/index.html index 3bc4b9a1..5e4bd842 100644 --- a/libpathod/templates/index.html +++ b/libpathod/templates/index.html @@ -56,7 +56,7 @@ <h2>source</h2> <ul> - <li>Current release: <a href="http://mitmproxy.org/download/pathod-0.9.1.tar.gz">pathod 0.9.1</a></li> + <li>Current release: <a href="http://mitmproxy.org/download/pathod-0.9.2.tar.gz">pathod 0.9.2</a></li> <li>GitHub: <a href="http://github.com/mitmproxy/pathod">github.com/cortesi/pathod</a></li> </li> diff --git a/libpathod/version.py b/libpathod/version.py index af62b678..32dcf30d 100644 --- a/libpathod/version.py +++ b/libpathod/version.py @@ -1,4 +1,4 @@ -IVERSION = (0, 9, 1) +IVERSION = (0, 9, 2) VERSION = ".".join(str(i) for i in IVERSION) NAME = "pathod" NAMEVERSION = NAME + " " + VERSION |