summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorengn33r <engn33r@users.noreply.github.com>2021-12-07 11:30:22 -0500
committerengn33r <engn33r@users.noreply.github.com>2021-12-07 11:30:22 -0500
commit0694848a93043b29e60c7653afb385839b1629b6 (patch)
tree05d95ecea0b17b7117c15ae38545cee06c84a458
parente67af16634df98eec5141ccee9439171b32fa4c1 (diff)
downloadwebsocket-client-1.2.3.tar.gz
1.2.3v1.2.3
-rw-r--r--ChangeLog3
-rw-r--r--docs/source/conf.py2
-rw-r--r--setup.py2
-rw-r--r--websocket/__init__.py2
4 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index d5967c2..6789489 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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 ---------------------------------------------------
diff --git a/setup.py b/setup.py
index f1266d9..6e034b0 100644
--- a/setup.py
+++ b/setup.py
@@ -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"