bump to 0.9.0, prepare release.

This commit is contained in:
benoitc 2010-05-24 09:08:42 +02:00
parent 7a4aa51703
commit 954fcae167
4 changed files with 29 additions and 3 deletions

View File

@ -49,6 +49,26 @@
<div class="document" id="news">
<h1 class="title">News</h1>
<div class="section" id="dev-2010-05-17">
<h1>0.9.0-dev / 2010-05-17</h1>
<div class="system-message">
<p class="system-message-title">System Message: WARNING/2 (<tt class="docutils">&lt;string&gt;</tt>, line 5)</p>
<p>Title underline too short.</p>
<pre class="literal-block">
0.9.0-dev / 2010-05-17
------------------
</pre>
</div>
<ul class="simple">
<li>Added <em>preload</em> setting. Load application code before the worker processes
are forked.</li>
<li>Refactored Config</li>
<li>Fix pidfile</li>
<li>Fix QUIT/HUP in async workers</li>
<li>Fix reexec</li>
<li>Documentation improvments</li>
</ul>
</div>
<div class="section" id="id1">
<h1>0.8.1 / 2010-04-29</h1>
<ul class="simple">

View File

@ -39,6 +39,8 @@ Example gunicorn.conf.py
before_exec=lambda server: server.log.info("Forked child, reexecuting")
when_ready=lambda server: server.log.info("Gunicorn started.")
Parameter Descriptions
----------------------
@ -107,6 +109,9 @@ umask:
user:
The user as which worker processes will by launched.
when_ready(server):
This is called by the arbiter just after Gunicorn started.
worker_connections:
Number of simultaneous connections a worker can handle when used with

View File

@ -4,16 +4,17 @@ title: News
News
====
0.9.0-dev / 2010-05-17
0.9.0 2010-05-22
------------------
- Added *when_ready* hook. Called just after the server is started
- Added *preload* setting. Load application code before the worker processes
are forked.
- Refactored Config
- Fix pidfile
- Fix QUIT/HUP in async workers
- Fix reexec
- Documentation improvments
- Documentation improvements
0.8.1 / 2010-04-29
------------------

View File

@ -3,5 +3,5 @@
# This file is part of gunicorn released under the MIT license.
# See the NOTICE for more information.
version_info = (0, 9, '0-dev')
version_info = (0, 9, 0)
__version__ = ".".join(map(str, version_info))