From 249df66954004f74004df6f37fcb13de982be5f7 Mon Sep 17 00:00:00 2001 From: liris Date: Wed, 28 Oct 2015 08:51:29 +0900 Subject: [PATCH] start v0.34 --- ChangeLog | 4 ++++ setup.py | 2 +- websocket/__init__.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) 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"