diff options
| author | engn33r <engn33r@users.noreply.github.com> | 2021-12-07 11:30:22 -0500 |
|---|---|---|
| committer | engn33r <engn33r@users.noreply.github.com> | 2021-12-07 11:30:22 -0500 |
| commit | 0694848a93043b29e60c7653afb385839b1629b6 (patch) | |
| tree | 05d95ecea0b17b7117c15ae38545cee06c84a458 | |
| parent | e67af16634df98eec5141ccee9439171b32fa4c1 (diff) | |
| download | websocket-client-1.2.3.tar.gz | |
1.2.3v1.2.3
| -rw-r--r-- | ChangeLog | 3 | ||||
| -rw-r--r-- | docs/source/conf.py | 2 | ||||
| -rw-r--r-- | setup.py | 2 | ||||
| -rw-r--r-- | websocket/__init__.py | 2 |
4 files changed, 6 insertions, 3 deletions
@@ -1,6 +1,9 @@ ChangeLog ============ +- 1.2.3 + - Fix broken run_forever() functionality (#769) + - 1.2.2 - Migrate wsdump script in setup.py from scripts to newer entry_points (#763) - Add support for ssl.SSLContext for arbitrary SSL parameters (#762) diff --git a/docs/source/conf.py b/docs/source/conf.py index d305197..803e50a 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -34,7 +34,7 @@ copyright = '2021' author = 'liris' # The full version, including alpha/beta/rc tags -release = '1.2.2' +release = '1.2.3' # -- General configuration --------------------------------------------------- @@ -25,7 +25,7 @@ import sys from setuptools import setup, find_packages import pkg_resources -VERSION = "1.2.2" +VERSION = "1.2.3" install_requires = [] tests_require = [] diff --git a/websocket/__init__.py b/websocket/__init__.py index b4cdb63..05aae2b 100644 --- a/websocket/__init__.py +++ b/websocket/__init__.py @@ -23,4 +23,4 @@ from ._exceptions import * from ._logging import * from ._socket import * -__version__ = "1.2.2" +__version__ = "1.2.3" |
