- add ChangeLog

- set version as 0.24
This commit is contained in:
liris
2015-01-09 10:12:29 +09:00
parent f6d04087f5
commit 4fb35bd30a
3 changed files with 6 additions and 2 deletions

View File

@@ -1,6 +1,10 @@
ChangeLog ChangeLog
============ ============
- 0.24.0
- Supporting http-basic auth in WebSocketApp (#143)
- 0.23.0 - 0.23.0
- Remove spurious print statement. (#135) - Remove spurious print statement. (#135)

View File

@@ -1,7 +1,7 @@
from setuptools import setup from setuptools import setup
import sys import sys
VERSION = "0.23.0" VERSION = "0.24.0"
NAME="websocket-client" NAME="websocket-client"
install_requires = ["six"] install_requires = ["six"]

View File

@@ -21,4 +21,4 @@ Copyright (C) 2010 Hiroki Ohtani(liris)
from ._core import * from ._core import *
from ._app import WebSocketApp from ._app import WebSocketApp
__version__ = "0.23.0" __version__ = "0.24.0"