diff options
| -rw-r--r-- | ChangeLog | 11 | ||||
| -rw-r--r-- | setup.py | 2 | ||||
| -rw-r--r-- | websocket/__init__.py | 2 |
3 files changed, 13 insertions, 2 deletions
@@ -1,6 +1,17 @@ ChangeLog ============ +- 0.48.0 + + - Add NullHandler to logger to fix python 2 issue. (#400) + - Fix the issue that websocket status message may not present (#403) + - Socket error not raised in nested try except in python2 (#408) + - Load system default certificates if none are given (#415) + - Fix waiting forever on ping/pong timeout (#411) + - socks5 via pysocks support (#417) + - v0.47.0 breaks ability to stop stream with `run_forever` (#410) + - _http.py: fix windows proxy error due to socktype (#427) + - 0.47.0 - Fix socket constructor in _open_socket to use all relevant variables from getaddrinfo. (#383) @@ -3,7 +3,7 @@ import sys from setuptools import setup import pkg_resources -VERSION = "0.47.0" +VERSION = "0.48.0" NAME = "websocket_client" install_requires = ["six"] diff --git a/websocket/__init__.py b/websocket/__init__.py index b90e65a..21db3fd 100644 --- a/websocket/__init__.py +++ b/websocket/__init__.py @@ -26,4 +26,4 @@ from ._exceptions import * from ._logging import * from ._socket import * -__version__ = "0.47.0" +__version__ = "0.48.0" |
