From 6170d5a503bc0a43703b62f20974f729271140c8 Mon Sep 17 00:00:00 2001 From: benoitc Date: Mon, 1 Mar 2010 10:12:26 +0100 Subject: [PATCH] prepare 0.6.2. release --- doc/site/configuration.rst | 4 ++++ doc/site/news.rst | 10 ++++++++++ 2 files changed, 14 insertions(+) diff --git a/doc/site/configuration.rst b/doc/site/configuration.rst index 9bfaac23..5bf260c4 100644 --- a/doc/site/configuration.rst +++ b/doc/site/configuration.rst @@ -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 `_ is installed, it allows you to set the process name for this Gunicorn instance. umask: Used to set the umask when daemonizing. diff --git a/doc/site/news.rst b/doc/site/news.rst index ef5ad7d8..a3ae1a17 100644 --- a/doc/site/news.rst +++ b/doc/site/news.rst @@ -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 ------------------