From bab9f030234f7675ab1fb658196933f58e3c42bc Mon Sep 17 00:00:00 2001 From: Luca Sbardella Date: Sat, 5 Nov 2016 21:28:44 +0000 Subject: [PATCH] Release 1.5.4 --- docs/source/history/1.5.md | 13 +++++++++++++ pulsar/__init__.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/docs/source/history/1.5.md b/docs/source/history/1.5.md index 633dfbc1..3594d62c 100644 --- a/docs/source/history/1.5.md +++ b/docs/source/history/1.5.md @@ -1,3 +1,16 @@ +## Ver. 1.5.4 - 2016-Nov-05 + +This release is important if you need to upload large files via HTTP. +The new ``stream_buffer`` configuration parameter helps you in this respect. + +* Added ``stream_buffer`` configuration parameter for controlling the maximum size of stream buffers + [14d6f2e](https://github.com/quantmind/pulsar/commit/14d6f2e7d1f54795ab5fe8f15ed97dd5eb6f62c5) +* Allow for clean removal of callbacks in channels by raising the ``CallbackError`` exception + [d7b9ff1](https://github.com/quantmind/pulsar/commit/d7b9ff177f76abd5c08859319571dcabe852cf9b) +* Documentation fixes +* OAuth test coverage + + ## Ver. 1.5.3 - 2016-Oct-31 This is a minor release with documentation fixes and channels improvements. diff --git a/pulsar/__init__.py b/pulsar/__init__.py index 5168c029..e2135b7f 100644 --- a/pulsar/__init__.py +++ b/pulsar/__init__.py @@ -5,7 +5,7 @@ from .utils.version import get_version -VERSION = (1, 6, 0, 'beta', 1) +VERSION = (1, 5, 4, 'final', 0) __version__ = version = get_version(VERSION)