prepare 0.6.2. release

This commit is contained in:
benoitc 2010-03-01 10:12:26 +01:00
parent 5f11fd024b
commit 6170d5a503
2 changed files with 14 additions and 0 deletions

View File

@ -20,6 +20,7 @@ Example gunicorn.conf.py
umask = 0 # Umask to set when daemonizing
user = None # Change process owner to user
group = None # Change process group to group
proc_name = None # Change the process name
def after_fork(server, worker):
fmt = "worker=%s spawned pid=%s"
@ -64,6 +65,9 @@ loglevel:
pidfile:
A file to store the master's PID.
proc_name:
If `setproctitle <http://pypi.python.org/pypi/setproctitle>`_ is installed, it allows you to set the process name for this Gunicorn instance.
umask:
Used to set the umask when daemonizing.

View File

@ -4,6 +4,16 @@ title: News
News
====
0.6.2 / 2010-03-01
------------------
* Added support for chunked response.
* Added possibility to configure proc_name in config file.
* Improved HTTP parser. We now use buffers instead of strings to store temporary data.
* Improved performance in send.
* Workers are now murdered by age (the older is killed the first).
0.6.1 / 2010-02-24
------------------