bump to 19.4.2

fix #1159
This commit is contained in:
Benoit Chesneau 2015-12-29 01:31:34 +01:00
parent 98c9e3b375
commit 01cdd8b62a
3 changed files with 60 additions and 1 deletions

View File

@ -6,6 +6,35 @@ Changelog - 2015
Please see :doc:`news` for the latest changes.
19.4.2 / 2015/12/29
===================
Core
++++
- improvement: handle HaltServer in manage_workers (:issue:`1095`)
- fix: Do not rely on sendfile sending requested count (:issue:`1155`)
- fix: claridy --no-sendfile default (:issue:`1156`)
- fix: LoggingCatch sendfile failure from no file descriptor (:issue:`1160`)
Logging
+++++++
- fix: Always send access log to syslog if syslog is on`
- fix: Documentationcheck auth before trying to own a file (:issue:`1157`)
Documentation
+++++++++++++
- fix: Fix Slowloris broken link. (:issue:`1142`)
- Tweak markup in faq.rst
Testing
+++++++
- fix: gaiohttp test (:issue:`1164`)
19.4.1 / 2015/11/25
===================

View File

@ -2,6 +2,36 @@
Changelog
=========
19.4.2 / 2015/12/29
===================
Core
++++
- improvement: handle HaltServer in manage_workers (:issue:`1095`)
- fix: Do not rely on sendfile sending requested count (:issue:`1155`)
- fix: claridy --no-sendfile default (:issue:`1156`)
- fix: LoggingCatch sendfile failure from no file descriptor (:issue:`1160`)
Logging
+++++++
- fix: Always send access log to syslog if syslog is on`
- fix: Documentationcheck auth before trying to own a file (:issue:`1157`)
Documentation
+++++++++++++
- fix: Fix Slowloris broken link. (:issue:`1142`)
- Tweak markup in faq.rst
Testing
+++++++
- fix: gaiohttp test (:issue:`1164`)
19.4.1 / 2015/11/25
===================

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