From da1ec75d22c36ff25dc2cfbce2ab3ac0f20ac8a7 Mon Sep 17 00:00:00 2001 From: Luca Sbardella Date: Mon, 28 Nov 2016 19:24:59 +0000 Subject: [PATCH] releasing --- docs/source/history/1.6.md | 11 +++++++++++ pulsar/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/source/history/1.6.md b/docs/source/history/1.6.md index 64bf67e7..feabaca7 100644 --- a/docs/source/history/1.6.md +++ b/docs/source/history/1.6.md @@ -1,3 +1,14 @@ +## Ver. 1.6.2 - 2016-Nov-28 + +This release fix a critical bug in windows (pulsar needs to choose how and if to support windows). +It is now possible to install and run servers on windows (multiprocessing not working at the moment) + +* Critical bug fix for pulsar in ``windows`` [#260](https://github.com/quantmind/pulsar/issues/260) +* Check if X-Forwarded-Proto is ``https`` in request headers to set secure WSGI flag +* ``absolute_uri`` with empty string returns the request uri +* Added logger property to request to allow to override the server logger + + ## Ver. 1.6.1 - 2016-Nov-24 Minor release with few improvements in the HTTPClient and ``Channels`` diff --git a/pulsar/__init__.py b/pulsar/__init__.py index 867c98bd..d281d474 100644 --- a/pulsar/__init__.py +++ b/pulsar/__init__.py @@ -5,7 +5,7 @@ from .utils.version import get_version -VERSION = (1, 6, 1, 'final', 0) +VERSION = (1, 6, 2, 'final', 0) __version__ = version = get_version(VERSION)