From 634d92fb84d147614c7084fff6cf25aa4db7ae54 Mon Sep 17 00:00:00 2001 From: Luca Sbardella Date: Fri, 1 Jul 2016 16:11:15 +0100 Subject: [PATCH] Release 1.3.5 --- docs/source/history/1.3.md | 10 ++++++++++ pulsar/__init__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/docs/source/history/1.3.md b/docs/source/history/1.3.md index 70b0ec6b..de8fe552 100644 --- a/docs/source/history/1.3.md +++ b/docs/source/history/1.3.md @@ -1,3 +1,13 @@ +## Ver. 1.3.5 - 2016-Jul-01 + +Bug fixes and improvements + +* Pyreadline compatibility for windows #230 +* Use ``router.SkipRoute`` to abort route serving [36204b4](https://github.com/quantmind/pulsar/commit/36204b4b1727956266fb2d7c21b36a7377bff696) +* Removed silence from events and fixed #228, [26193f5](https://github.com/quantmind/pulsar/commit/26193f5c9454689fd073dca57459332ef5cb84a5) +* Allow MediaRouter to serve only files matching a set of extensions [a3312c7](https://github.com/quantmind/pulsar/commit/a3312c74b109f1326a9e933c9efdfc66eea34f4d) + + ## Ver. 1.3.4 - 2016-Jun-17 Minor release which adds the ability to run a single test function from the test suite. diff --git a/pulsar/__init__.py b/pulsar/__init__.py index 784e1d06..1cff5ea8 100644 --- a/pulsar/__init__.py +++ b/pulsar/__init__.py @@ -5,7 +5,7 @@ from .utils.version import get_version -VERSION = (1, 3, 5, 'alpha', 0) +VERSION = (1, 3, 5, 'final', 0) __version__ = version = get_version(VERSION)