Skip to content

Commit 1c9bf20

Browse files
committed
Bump version
Signed-off-by: Sylvain Hellegouarch <sh@defuze.org>
1 parent d34310f commit 1c9bf20

2 files changed

Lines changed: 14 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,24 @@
33
## Unreleased
44
[Full Changelog](https://github.com/Lawouach/WebSocket-for-Python/compare/0.4.2...master)
55

6+
## [0.5.0](https://github.com/Lawouach/WebSocket-for-Python/tree/0.5.0) (2018-02-27)
7+
[Full Changelog](https://github.com/Lawouach/WebSocket-for-Python/compare/0.4.3...0.5.0)
8+
**Merged pull requests:**
9+
10+
- proper fix for #230: on secure, only pass the requested number of bytes to the parsers [\#239](https://github.com/Lawouach/WebSocket-for-Python/pull/239) ([jmichiel](https://github.com/jmichiel))
11+
- fixed runtime error: Set changed size during iteration [\#233](https://github.com/Lawouach/WebSocket-for-Python/pull/233) ([kamwoh](https://github.com/kamwoh))
12+
- Adds argument to set block value on gevent get command in WebSocketClient.receive() [\#221](https://github.com/Lawouach/WebSocket-for-Python/pull/221) ([thaffenden](https://github.com/thaffenden))
13+
14+
**Changes:**
15+
16+
- Clarifies this project is on hiatus in README
17+
618
## [0.4.3](https://github.com/Lawouach/WebSocket-for-Python/tree/0.4.3) (2017-12-19)
719
[Full Changelog](https://github.com/Lawouach/WebSocket-for-Python/compare/0.4.3...0.4.3)
820
**Merged pull requests:**
921

1022
- Change threaded client test to test ssl socket [\#213](https://github.com/Lawouach/WebSocket-for-Python/pull/213) ([awelkie](https://github.com/awelkie))
11-
- Create MANIFEST.in with LICENSE [\#215](https://github.com/Lawouach/WebSocket-for-Python/pull/215) ([pmlandwehr](https://github.com/pmlandwehr ))
23+
- Create MANIFEST.in with LICENSE [\#215](https://github.com/Lawouach/WebSocket-for-Python/pull/215) ([pmlandwehr](https://github.com/pmlandwehr))
1224
- exclude certain headers when requested [\#217](https://github.com/Lawouach/WebSocket-for-Python/pull/217) ([klattimer](https://github.com/klattimer))
1325
- change from type() to isinstance() [\#236](https://github.com/Lawouach/WebSocket-for-Python/pull/236) ([noam-graetz](https://github.com/noam-graetz))
1426

ws4py/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
import logging.handlers as handlers
3131

3232
__author__ = "Sylvain Hellegouarch"
33-
__version__ = "0.4.3"
33+
__version__ = "0.5.0"
3434
__all__ = ['WS_KEY', 'WS_VERSION', 'configure_logger', 'format_addresses']
3535

3636
WS_KEY = b"258EAFA5-E914-47DA-95CA-C5AB0DC85B11"

0 commit comments

Comments
 (0)