Skip to content

Commit

Permalink
1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
engn33r committed Jun 9, 2023
1 parent c448bc8 commit 99f60d4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
ChangeLog
============

- 1.5.3
- Add logic to avoid error in the case where content-length header does not exist, bug introduced in 1.5.2 (#911)
- Fix wsdump.py script typing, bug introduced in 1.5.2 (#914)

- 1.5.2
- Add typehints (#908)
- Fix pytype errors (#906)
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def setup(app):
author = 'liris'

# The full version, including alpha/beta/rc tags
release = '1.5.2'
release = '1.5.3'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
limitations under the License.
"""

VERSION = "1.5.2"
VERSION = "1.5.3"

install_requires = []
tests_require = []
Expand Down
2 changes: 1 addition & 1 deletion websocket/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
from ._logging import *
from ._socket import *

__version__ = "1.5.2"
__version__ = "1.5.3"

0 comments on commit 99f60d4

Please sign in to comment.