diff options
| author | engn33r <engn33r@users.noreply.github.com> | 2021-03-02 20:48:12 -0500 |
|---|---|---|
| committer | engn33r <engn33r@users.noreply.github.com> | 2021-03-02 20:48:12 -0500 |
| commit | bf1b7675c842e2a7a8ea4167216d16b18fee7f56 (patch) | |
| tree | d0f7e6f4cd27547baacd6527b3eef554f9634505 | |
| parent | edb95d897f8f0b5d22406a9b264d2678ff350499 (diff) | |
| download | websocket-client-bf1b7675c842e2a7a8ea4167216d16b18fee7f56.tar.gz | |
0.58.0v0.58.0
| -rw-r--r-- | ChangeLog | 16 | ||||
| -rw-r--r-- | setup.py | 2 | ||||
| -rw-r--r-- | websocket/__init__.py | 2 |
3 files changed, 17 insertions, 3 deletions
@@ -1,7 +1,21 @@ ChangeLog ============ +- 0.58.0 + + - Fix README typos (#659) + - Create README.md from README.rst (#655) + - Capitalize 'Upgrade' in 'Connection: Upgrade' (#605) + - Add Python 3.8 and 3.9 CI support (#596) + - Replace deprecated `thread.isAlive` with `thread.is_alive` (#594) + - Revert to LGPL v2.1 license (#526) + - Add code coverage CI testing (#663) + - Properly revert callback (#442) + - Replace TravisCI with GitHub Actions (36e32c7) + - Create Sphinx readthedocs.io documentation (aace06b) + - 0.57.0 + - wsdump: Fix --headers option (#589) - Fix getting 400 bad request with long proxy authorization string (#587) - Fix for errors that occur when closing websocket from another thread (#586) @@ -13,7 +27,7 @@ ChangeLog - Expose http connection header to user (#566) - Improve the readability of HTTP status codes. (#553) - fix the compatible issue with gevent+dnspython (#547) - - v should be checked for emptry string before splitting it (#539) + - v should be checked for empty string before splitting it (#539) - _handshake: hasattr checks on six before accessing the values (#533) - 0.56.0 @@ -27,7 +27,7 @@ import sys from setuptools import setup import pkg_resources -VERSION = "0.57.0" +VERSION = "0.58.0" NAME = "websocket_client" install_requires = ["six"] diff --git a/websocket/__init__.py b/websocket/__init__.py index 09728b3..ce1b787 100644 --- a/websocket/__init__.py +++ b/websocket/__init__.py @@ -25,4 +25,4 @@ from ._exceptions import * from ._logging import * from ._socket import * -__version__ = "0.57.0" +__version__ = "0.58.0" |
