Prep for 0.6 release.

- Update contributors file.
- Bump version number
- Include version number in docs
This commit is contained in:
Aldo Cortesi 2011-08-06 21:12:20 +12:00
parent 2e72b310d9
commit 8309ab0ec8
5 changed files with 7 additions and 5 deletions

View File

@ -1,5 +1,8 @@
203 Aldo Cortesi
278 Aldo Cortesi
18 Henrik Nordstrom
13 Thomas Roth
10 Stephen Altamirano
2 alts
1 Yuangxuan Wang
1 Henrik Nordström
1 Felix Wolfsteller

View File

@ -14,7 +14,7 @@
</div>
<!--(end)-->
$!nav if this.title!="docs" else ""!$
<h1><a href="@!urlTo("/index.html")!@">mitmproxy docs</a></h1>
<h1><a href="@!urlTo("/index.html")!@">mitmproxy 0.6 docs</a></h1>
</div>
<div id="bd">
<div id="yui-main">

View File

@ -29,7 +29,7 @@
</div>
<!--(end)-->
$!nav if this.title!="docs" else ""!$
$!title if this.title!="docs" else "<h1>mitmproxy docs</h1>"!$
$!title if this.title!="docs" else "<h1>mitmproxy 0.6 docs</h1>"!$
$!body!$
</div>
</div>

View File

@ -14,7 +14,6 @@ else:
ns.title = countershape.template.Template(None, "<h1>@!this.title!@</h1>")
this.layout = countershape.Layout("_layout.html")
ns.docTitle = "mitmproxy"
this.markup = markup.Markdown()
ns.docMaintainer = "Aldo Cortesi"
ns.docMaintainerEmail = "aldo@corte.si"

View File

@ -1,2 +1,2 @@
IVERSION = (0, 5)
IVERSION = (0, 6)
VERSION = ".".join([str(i) for i in IVERSION])