From 61171591b08ee031e02cc6cb129952259062f502 Mon Sep 17 00:00:00 2001 From: engn33r Date: Mon, 20 Jun 2022 00:00:00 +0000 Subject: [PATCH] 1.3.3 --- ChangeLog | 5 +++++ docs/source/conf.py | 2 +- setup.py | 2 +- websocket/__init__.py | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1910036..5666745 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,11 @@ ChangeLog ============ +- 1.3.3 + - Fix unclosed socket error (#826) + - Update header dict access (#818) + - Add utf8 workaround to docs (fc9ee9f) + - 1.3.2 - Add support for pre-initialized stream socket in new WebSocketApp (#804) - Remove rel.saferead() in examples (f0bf03d) diff --git a/docs/source/conf.py b/docs/source/conf.py index a5d57ad..a35c4ed 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -34,7 +34,7 @@ def setup(app): author = 'liris' # The full version, including alpha/beta/rc tags -release = '1.3.2' +release = '1.3.3' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 3164e60..4a792ba 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ limitations under the License. """ -VERSION = "1.3.2" +VERSION = "1.3.3" install_requires = [] tests_require = [] diff --git a/websocket/__init__.py b/websocket/__init__.py index a5a3950..6e018cb 100644 --- a/websocket/__init__.py +++ b/websocket/__init__.py @@ -23,4 +23,4 @@ from ._logging import * from ._socket import * -__version__ = "1.3.2" +__version__ = "1.3.3" -- 2.33.3