diff --git a/doc/htdocs/news.html b/doc/htdocs/news.html
index 7b35e162..7d4b29fd 100644
--- a/doc/htdocs/news.html
+++ b/doc/htdocs/news.html
@@ -50,6 +50,14 @@
News
+
0.9.1 / 2010-05-26
+
+- Fix configuration
+- Remove -d options which was used instead of -D for daemon.
+- Fix umask in unix socket
+
+
+
0.9.0 / 2010-05-24
- Added when_ready hook. Called just after the server is started
@@ -62,7 +70,7 @@ are forked.
- Documentation improvements
-
+
0.8.1 / 2010-04-29
- Fix builtins import in config
@@ -71,7 +79,7 @@ are forked.
- Delay application loading until after processing all configuration
-
+
0.8.0 / 2010-04-22
- Refactored Worker management for better async support. Now use the -k option
@@ -79,7 +87,7 @@ to set the type of request processing to use
- Added support for Tornado
-
+
0.7.2 / 2010-04-15
- Added --spew option to help debugging (installs a system trace hook)
@@ -87,13 +95,13 @@ to set the type of request processing to use
- Fix a bug in start_response on error
-
+
0.7.1 / 2010-04-01
- Fix bug when responses have no body.
-
+
0.7.0 / 2010-03-26
- Added support for Eventlet and Gevent based workers.
@@ -103,28 +111,28 @@ to set the type of request processing to use
- Fix PEP 333 compliance for the write callable.
-
+
0.6.5 / 2010-03-11
- Fix pidfile handling
- Fix Exception Error
-
+
0.6.4 / 2010-03-08
- Use cStringIO for performance when possible.
- Fix worker freeze when a remote connection closes unexpectedly.
-
+
0.6.3 / 2010-03-07
- Make HTTP parsing faster.
- Various bug fixes
-
+
0.6.2 / 2010-03-01
- Added support for chunked response.
@@ -135,7 +143,7 @@ temporary data.
- Workers are now murdered by age (the oldest is killed first).
-
+
0.6.1 / 2010-02-24
- Added gunicorn config file support for Django admin command
@@ -143,7 +151,7 @@ temporary data.
- Removed TTIN/TTOU from workers which blocked other signals.
-
+
0.6 / 2010-02-22
- Added setproctitle support
@@ -151,14 +159,14 @@ temporary data.
permissions, new uid/gid permissions are only set for workers.
-
+
0.5.1 / 2010-02-22
- Fix umask
- Added Debian packaging
-
+
0.5 / 2010-02-20
- Added configuration file handler.
diff --git a/doc/htdocs/usage.html b/doc/htdocs/usage.html
index f2843163..d3e3e9ad 100644
--- a/doc/htdocs/usage.html
+++ b/doc/htdocs/usage.html
@@ -178,7 +178,7 @@ Options:
Process name
--log-level=LOGLEVEL Log level below which to silence messages. [info]
--log-file=LOGFILE Log to a file. - equals stdout. [-]
- -d, --debug Debug mode. only 1 worker.
+ --debug Debug mode. only 1 worker.
--spew Install a trace hook
--version show program's version number and exit
-h, --help show this help message and exit
diff --git a/doc/site/news.rst b/doc/site/news.rst
index 17b779af..2b31c88e 100644
--- a/doc/site/news.rst
+++ b/doc/site/news.rst
@@ -4,6 +4,13 @@ title: News
News
====
+0.9.1 / 2010-05-26
+------------------
+
+- Fix configuration
+- Remove -d options which was used instead of -D for daemon.
+- Fix umask in unix socket
+
0.9.0 / 2010-05-24
------------------
diff --git a/doc/site/usage.rst b/doc/site/usage.rst
index d771fcc5..82960b50 100644
--- a/doc/site/usage.rst
+++ b/doc/site/usage.rst
@@ -136,7 +136,7 @@ Full Command Line Usage
Process name
--log-level=LOGLEVEL Log level below which to silence messages. [info]
--log-file=LOGFILE Log to a file. - equals stdout. [-]
- -d, --debug Debug mode. only 1 worker.
+ --debug Debug mode. only 1 worker.
--spew Install a trace hook
--version show program's version number and exit
-h, --help show this help message and exit
diff --git a/gunicorn/config.py b/gunicorn/config.py
index b0553016..2a89f848 100644
--- a/gunicorn/config.py
+++ b/gunicorn/config.py
@@ -327,7 +327,7 @@ with Setting("keepalive") as s:
with Setting("debug") as s:
s.section = "Debugging"
- s.cli = ["-d", "--debug"]
+ s.cli = ["--debug"]
s.validator = validate_bool
s.action = "store_true"
s.default = False
diff --git a/gunicorn/management/commands/run_gunicorn.py b/gunicorn/management/commands/run_gunicorn.py
index ca798cb3..dd599f9b 100644
--- a/gunicorn/management/commands/run_gunicorn.py
+++ b/gunicorn/management/commands/run_gunicorn.py
@@ -52,7 +52,7 @@ class Command(BaseCommand):
options['bind'] = addrport or '127.0.0.1'
- options['default_proc_name'] =settings.SETTINGS_MODULE
+ options['default_proc_name'] = settings.SETTINGS_MODULE
admin_media_path = options.pop('admin_media_path', '')
quit_command = (sys.platform == 'win32') and 'CTRL-BREAK' or 'CONTROL-C'