Skip to content

Commit

Permalink
bump to 19.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitc committed Mar 6, 2015
1 parent 30177b8 commit 3976160
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 3 deletions.
31 changes: 29 additions & 2 deletions docs/source/2015-news.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,34 @@ Changelog - 2015

Please see :doc:`news` for the latest changes.


19.2.2 / 2015/03/06
===================

Changes
-------

Core
++++

- fix: :issue:`978` make sure a listener is inherutable
- add `check_config` class method to workers
- fix: :issue:`983` fix select timeout in sync worker with multiple
connections
- allows workers to access to the reloader. close :issue:`984`
- raise TypeError insted of AssertionError

Logging
+++++++

- make Logger.loglevel a classs attribute

Documentation
+++++++++++++

- fix: :issue:`988` fix syntax errors in examples/gunicorn_rc


19.2.1 / 2015/02/4
==================

Expand All @@ -26,8 +54,7 @@ Documentation
+++++++++++++

- document security mailing-list in the contributing page.



19.2 / 2015/01/30
=================

Expand Down
26 changes: 26 additions & 0 deletions docs/source/news.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,32 @@
Changelog
=========

19.2.2 / 2015/03/06
===================

Changes
-------

Core
++++

- fix: :issue:`978` make sure a listener is inherutable
- add `check_config` class method to workers
- fix: :issue:`983` fix select timeout in sync worker with multiple
connections
- allows workers to access to the reloader. close :issue:`984`
- raise TypeError insted of AssertionError

Logging
+++++++

- make Logger.loglevel a classs attribute

Documentation
+++++++++++++

- fix: :issue:`988` fix syntax errors in examples/gunicorn_rc

19.2.1 / 2015/02/4
==================

Expand Down
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 = (19, 2, 1)
version_info = (19, 2, 2)
__version__ = ".".join([str(v) for v in version_info])
SERVER_SOFTWARE = "gunicorn/%s" % __version__

0 comments on commit 3976160

Please sign in to comment.