From 961c07ce16ce4eedc34ca1fdacd29442870feccc Mon Sep 17 00:00:00 2001 From: Sylvain Hellegouarch Date: Wed, 28 Feb 2018 17:24:28 +0100 Subject: [PATCH] Bump version Signed-off-by: Sylvain Hellegouarch --- CHANGELOG.md | 8 +++++++- ws4py/__init__.py | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c490ad6..d26ed44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,13 @@ # Change Log ## Unreleased -[Full Changelog](https://github.com/Lawouach/WebSocket-for-Python/compare/0.4.2...master) +[Full Changelog](https://github.com/Lawouach/WebSocket-for-Python/compare/0.5.1...master) + +## [0.5.1](https://github.com/Lawouach/WebSocket-for-Python/tree/0.5.1) (2018-02-28) +[Full Changelog](https://github.com/Lawouach/WebSocket-for-Python/compare/0.5.0...0.5.1) +**Merged pull requests:** + +- Rudimentary fix and testcase for Issue #179 [\#219](https://github.com/Lawouach/WebSocket-for-Python/pull/219) ([medington](https://github.com/medington)) ## [0.5.0](https://github.com/Lawouach/WebSocket-for-Python/tree/0.5.0) (2018-02-27) [Full Changelog](https://github.com/Lawouach/WebSocket-for-Python/compare/0.4.3...0.5.0) diff --git a/ws4py/__init__.py b/ws4py/__init__.py index 2338fb0..5f01c50 100644 --- a/ws4py/__init__.py +++ b/ws4py/__init__.py @@ -30,7 +30,7 @@ import logging.handlers as handlers __author__ = "Sylvain Hellegouarch" -__version__ = "0.5.0" +__version__ = "0.5.1" __all__ = ['WS_KEY', 'WS_VERSION', 'configure_logger', 'format_addresses'] WS_KEY = b"258EAFA5-E914-47DA-95CA-C5AB0DC85B11"