diff --git a/docs/source/history/1.4.md b/docs/source/history/1.4.md index 9227e9d4..cb2ba8b0 100644 --- a/docs/source/history/1.4.md +++ b/docs/source/history/1.4.md @@ -1,3 +1,14 @@ +## Ver. 1.4.1 - 2016-Sep-09 + +This version brings a critical bug fix in the HTTP client Digest authentication flow. +If you use that feature you need to upgrade now! + +* Critical bug fix in HTTPDigest Authentication #243 +* Using pulsar with docker? bind to all network interfaces #241 +* Allow for True attributes in HTML content +* Added HTML body scripts [bde6875](https://github.com/quantmind/pulsar/commit/bde6875d2cca7b0e21a2d358baa76a498e61b5d3) + + ## Ver. 1.4.0 - 2016-Aug-04 A release which brings several improvements, bug fixes and a minor backward @@ -12,5 +23,4 @@ Importantly, the django pulse application has been moved to its own repo. * HttpClient bug fix #221 [9249331](https://github.com/quantmind/pulsar/commit/92493315d0559e061ca78f2c1631a4d6d34292bb) * Added asynchronous Lock primitive to the async module [4a10883](https://github.com/quantmind/pulsar/commit/4a10883aaf2ee76bf495035d6f57fe602eaede4d) * Handle datastor and redis pubsub connections drop with `connection_lost` event [dc322b7](https://github.com/quantmind/pulsar/commit/dc322b761f978cb97dabc7809545b296c737db0a) -* Always decode content as json in JsonProxy (thanks to @wilddom), pull request #233 - +* Always decode content as json in JsonProxy (thanks to @wilddom), pull request #233 \ No newline at end of file diff --git a/pulsar/__init__.py b/pulsar/__init__.py index e10b3d3a..5a5d3859 100644 --- a/pulsar/__init__.py +++ b/pulsar/__init__.py @@ -5,7 +5,7 @@ from .utils.version import get_version -VERSION = (1, 4, 1, 'beta', 0) +VERSION = (1, 4, 1, 'final', 0) __version__ = version = get_version(VERSION)