add document

This commit is contained in:
liris
2016-05-10 08:57:38 +09:00
parent 1fe78dc5c0
commit e24ea6f066
3 changed files with 7 additions and 2 deletions

View File

@@ -1,6 +1,11 @@
ChangeLog ChangeLog
============ ============
- 0.38.0
- Exclude port 443 from host http header (#248)
- Cleanup code (#249)
- Modify a code block directive in README (#250)
- 0.37.0 - 0.37.0
- fixed failure that `websocket.create_connection` does not accept `origin` as a parameter (#246 ) - fixed failure that `websocket.create_connection` does not accept `origin` as a parameter (#246 )

View File

@@ -1,7 +1,7 @@
from setuptools import setup from setuptools import setup
import sys import sys
VERSION = "0.37.0" VERSION = "0.38.0"
NAME = "websocket_client" NAME = "websocket_client"
install_requires = ["six"] install_requires = ["six"]

View File

@@ -26,4 +26,4 @@ from ._exceptions import *
from ._logging import * from ._logging import *
from ._socket import * from ._socket import *
__version__ = "0.37.0" __version__ = "0.38.0"