diff --git a/doc-src/_layout.html b/doc-src/_layout.html index 89b14f59c..d7637194f 100644 --- a/doc-src/_layout.html +++ b/doc-src/_layout.html @@ -14,7 +14,7 @@ $!nav if this.title!="docs" else ""!$ -

mitmproxy 0.8 docs

+

mitmproxy 0.9 docs

diff --git a/doc-src/_websitelayout.html b/doc-src/_websitelayout.html index ab079c0a6..437c10973 100644 --- a/doc-src/_websitelayout.html +++ b/doc-src/_websitelayout.html @@ -29,7 +29,7 @@
$!nav if this.title!="docs" else ""!$ - $!title if this.title!="docs" else "

mitmproxy 0.8 docs

"!$ + $!title if this.title!="docs" else "

mitmproxy 0.9 docs

"!$ $!body!$
diff --git a/libmproxy/version.py b/libmproxy/version.py index 3c39ed25a..3dfc94097 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