mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
bump version number and add it to usage
This commit is contained in:
parent
c6c704346a
commit
92a0a2582d
@ -7,4 +7,6 @@ from gunicorn.http.parser import Parser
|
|||||||
from gunicorn.http.request import Request, RequestError
|
from gunicorn.http.request import Request, RequestError
|
||||||
from gunicorn.http.response import Response
|
from gunicorn.http.response import Response
|
||||||
|
|
||||||
__all__ = [Parser, Request, RequestError, Response]
|
__all__ = [Parser, Request, RequestError, Response]
|
||||||
|
|
||||||
|
__version__ = '0.4'
|
||||||
@ -84,7 +84,8 @@ def daemonize():
|
|||||||
os.dup2(0, 2)
|
os.dup2(0, 2)
|
||||||
|
|
||||||
def main(usage, get_app):
|
def main(usage, get_app):
|
||||||
parser = op.OptionParser(usage=usage, option_list=options())
|
parser = op.OptionParser(usage=usage, option_list=options(),
|
||||||
|
version="%prog 0.4")
|
||||||
opts, args = parser.parse_args()
|
opts, args = parser.parse_args()
|
||||||
configure_logging(opts)
|
configure_logging(opts)
|
||||||
|
|
||||||
|
|||||||
2
setup.py
2
setup.py
@ -9,7 +9,7 @@ from setuptools import setup, find_packages
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = 'gunicorn',
|
name = 'gunicorn',
|
||||||
version = '0.3.2',
|
version = '0.4',
|
||||||
|
|
||||||
description = 'WSGI HTTP Server for UNIX',
|
description = 'WSGI HTTP Server for UNIX',
|
||||||
long_description = file(
|
long_description = file(
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user