bump to 17.5

Not: With this release, the versionning of Gunicorn is changing.
Gunicorn is stable since a long time and there is no point to release a
"1.0" now. It should have been done since a long time. Also from the
beginning we have only 2 kind of releases:

- major release: releases with major changes or huge features added
- interval releases: fixes and minor features added

So from now we will apply the following versionning

    R<major>.<interval>

for example R17.5 means we are relasing an interval release on the 17th
major version.
This commit is contained in:
benoitc 2013-07-03 10:00:33 +02:00
parent 9c0d1a0cad
commit cf0527f5ee

View File

@ -3,6 +3,6 @@
# This file is part of gunicorn released under the MIT license.
# See the NOTICE for more information.
version_info = (0, 17, 4)
version_info = (17, 5)
__version__ = ".".join([str(v) for v in version_info])
SERVER_SOFTWARE = "gunicorn/%s" % __version__