bump to 0.13.4

- fix closerange function on python 2.5 (typo)
This commit is contained in:
benoitc 2011-09-23 07:38:10 +02:00
parent 0c4021d169
commit a4f22037c4
3 changed files with 8 additions and 5 deletions

View File

@ -79,11 +79,9 @@ def app(environ, start_response):
</ul>
</div>
<div class="blurb">
<h3>Version 0.13.3 / 2011-09-19</h3>
<h3>Version 0.13.4 / 2011-09-23</h3>
<ul>
<li>refactor gevent worker</li>
<li>prevent leaking fds on reexec</li>
<li>fix inverted request_time computation</li>
<li>fix typo</li>
</ul>
</div>
<div id="footer">

View File

@ -8,6 +8,11 @@ _TOC_TOP_
_TOC_BOT_
0.13.4 / 2011-09-23
-------------------
- fix typo
0.13.3 / 2011-09-19
-------------------

View File

@ -3,6 +3,6 @@
# This file is part of gunicorn released under the MIT license.
# See the NOTICE for more information.
version_info = (0, 13, 3)
version_info = (0, 13, 4)
__version__ = ".".join(map(str, version_info))
SERVER_SOFTWARE = "gunicorn/%s" % __version__