aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2012-05-11 09:52:17 +1200
committerAldo Cortesi <aldo@nullcube.com>2012-05-11 09:52:17 +1200
commit12b8a43dbe433adb2f713560ef6fd13b83bc13ee (patch)
tree7e9ff32b0aac6a85f2f54f565b03597f93c02202
parentd42fdc4ff6a228f098e9e12a2aeec9737748dfcc (diff)
downloadmitmproxy-12b8a43dbe433adb2f713560ef6fd13b83bc13ee.tar.gz
mitmproxy-12b8a43dbe433adb2f713560ef6fd13b83bc13ee.tar.bz2
mitmproxy-12b8a43dbe433adb2f713560ef6fd13b83bc13ee.zip
Bump version number.
-rw-r--r--doc-src/_layout.html2
-rw-r--r--doc-src/_websitelayout.html2
-rw-r--r--libmproxy/version.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/doc-src/_layout.html b/doc-src/_layout.html
index 89b14f59..d7637194 100644
--- a/doc-src/_layout.html
+++ b/doc-src/_layout.html
@@ -14,7 +14,7 @@
</div>
<!--(end)-->
$!nav if this.title!="docs" else ""!$
- <h1><a href="@!urlTo("/index.html")!@">mitmproxy 0.8 docs</a></h1>
+ <h1><a href="@!urlTo("/index.html")!@">mitmproxy 0.9 docs</a></h1>
</div>
<div id="bd">
<div id="yui-main">
diff --git a/doc-src/_websitelayout.html b/doc-src/_websitelayout.html
index ab079c0a..437c1097 100644
--- a/doc-src/_websitelayout.html
+++ b/doc-src/_websitelayout.html
@@ -29,7 +29,7 @@
</div>
<!--(end)-->
$!nav if this.title!="docs" else ""!$
- $!title if this.title!="docs" else "<h1>mitmproxy 0.8 docs</h1>"!$
+ $!title if this.title!="docs" else "<h1>mitmproxy 0.9 docs</h1>"!$
$!body!$
</div>
</div>
diff --git a/libmproxy/version.py b/libmproxy/version.py
index 3c39ed25..3dfc9409 100644
--- a/libmproxy/version.py
+++ b/libmproxy/version.py
@@ -1,4 +1,4 @@
-IVERSION = (0, 8)
+IVERSION = (0, 9)
VERSION = ".".join(str(i) for i in IVERSION)
NAME = "mitmproxy"
NAMEVERSION = NAME + " " + VERSION