Skip to content

Commit

Permalink
bump to 17.5
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
benoitc committed Jul 3, 2013
1 parent 9c0d1a0 commit cf0527f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gunicorn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__

0 comments on commit cf0527f

Please sign in to comment.