bump to 0.14.5

This commit is contained in:
benoitc 2012-06-24 18:16:48 +02:00
parent 67bd75f7b3
commit 5b0e8f9011
3 changed files with 11 additions and 1 deletions

View File

@ -79,6 +79,11 @@ def app(environ, start_response):
</ul>
</div>
<div class="blurb">
<h3>Version 0.14.5 / 2012-06-24</h3>
<ul>
<li>fix logging during daemonisation</li>
</ul>
<br>
<h3>Version 0.14.4 / 2012-06-24</h3>
<ul>
<li>new --graceful-timeout option</li>

View File

@ -8,6 +8,11 @@ _TOC_TOP_
_TOC_BOT_
0.14.5 / 2012-06-24
-------------------
- fix logging during daemonisation
0.14.4 / 2012-06-24
-------------------

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, 14, 4)
version_info = (0, 14, 5)
__version__ = ".".join(map(str, version_info))
SERVER_SOFTWARE = "gunicorn/%s" % __version__