diff --git a/ChangeLog b/ChangeLog index 60df015..8c7b00a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,10 @@ ChangeLog ============ +- 0.34.0 + + + - 0.33.0 - fixed timeout+ssl error handling bug on python 2.7.10 (#190) diff --git a/setup.py b/setup.py index dfd7702..8eeec3c 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup import sys -VERSION = "0.33.0" +VERSION = "0.34.0" NAME="websocket_client" install_requires = ["six"] diff --git a/websocket/__init__.py b/websocket/__init__.py index 0b535ef..c189a4f 100644 --- a/websocket/__init__.py +++ b/websocket/__init__.py @@ -22,4 +22,4 @@ Copyright (C) 2010 Hiroki Ohtani(liris) from ._core import * from ._app import WebSocketApp -__version__ = "0.33.0" +__version__ = "0.34.0"