Skip to content

Commit

Permalink
fixed #246
Browse files Browse the repository at this point in the history
  • Loading branch information
liris committed Apr 14, 2016
1 parent fa97b17 commit 3ca245d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
ChangeLog
============

- 0.37.0
- fixed fialer that `websocket.create_connection` does not accept `origin` as a parameter (#246 )

- 0.36.0
- added support for using custom connection class (#235)
- use Named logger (#238)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup
import sys

VERSION = "0.36.0"
VERSION = "0.37.0"
NAME="websocket_client"

install_requires = ["six"]
Expand Down
2 changes: 1 addition & 1 deletion websocket/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
from ._core import *
from ._app import WebSocketApp

__version__ = "0.36.0"
__version__ = "0.37.0"
2 changes: 1 addition & 1 deletion websocket/_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class WebSocket(object):

def __init__(self, get_mask_key=None, sockopt=None, sslopt=None,
fire_cont_frame=False, enable_multithread=False,
skip_utf8_validation=False):
skip_utf8_validation=False, **options):
"""
Initialize WebSocket object.
"""
Expand Down

0 comments on commit 3ca245d

Please sign in to comment.