aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2010-03-01 17:25:27 +1300
committerAldo Cortesi <aldo@nullcube.com>2010-03-01 17:25:27 +1300
commite98a035540559c766dddaff44b7327ab828f3672 (patch)
treed6aa36a2575c0e33b942bb2a6163f2dce7f221d5
parentf457342aab854d4cb34f918ba07b24168df9269c (diff)
downloadmitmproxy-e98a035540559c766dddaff44b7327ab828f3672.tar.gz
mitmproxy-e98a035540559c766dddaff44b7327ab828f3672.tar.bz2
mitmproxy-e98a035540559c766dddaff44b7327ab828f3672.zip
Release mitmproxy 0.2
-rw-r--r--CHANGELOG24
-rw-r--r--README8
-rw-r--r--setup.py2
3 files changed, 29 insertions, 5 deletions
diff --git a/CHANGELOG b/CHANGELOG
new file mode 100644
index 00000000..c76419b0
--- /dev/null
+++ b/CHANGELOG
@@ -0,0 +1,24 @@
+
+
+1 March 2010: mitmproxy 0.2
+
+ * Big speed and responsiveness improvements, thanks to Thomas Roth
+
+ * Support urwid 0.9.9
+ *
+ * Terminal beeping based on filter expressions
+
+ * Filter expressions for terminal beeps, limits, interceptions and sticky
+ cookies can now be passed on the command line.
+
+ * Save requests and responses to file
+
+ * Split off non-interactive dump functionality into a new tool called
+ mitmdump
+
+ * "A" will now accept all intercepted connections
+
+ * Lots of bugfixes
+
+
+
diff --git a/README b/README
index e25754ce..4f2cb8e8 100644
--- a/README
+++ b/README
@@ -4,10 +4,10 @@ underlying library that mitmproxy is built on can also be used to do these
things programmatically.
By default, mitmproxy starts up with a mutt-like interactive curses interface -
-the help page (which you can view by pressing "?") should tell you everything
-you need to know. Note that requests and responses are stored in-memory until
-you delete them, so leaving mitmproxy running indefinitely or requesting very
-large amounts of data through it is a bad idea.
+the built-in help page (which you can view by pressing "?") will tell you
+everything you need to know. Note that requests and responses are stored
+in-memory until you delete them, so leaving mitmproxy running indefinitely or
+requesting very large amounts of data through it is a bad idea.
SSL
---
diff --git a/setup.py b/setup.py
index 113f1bab..b667405a 100644
--- a/setup.py
+++ b/setup.py
@@ -68,7 +68,7 @@ def findPackages(path, dataExclude=[]):
long_description = file("README").read()
packages, package_data = findPackages("libmproxy")
-version = "0.1"
+version = "0.2"
setup(
name = "mitmproxy",
version = version,