Skip to content

Commit

Permalink
1.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
engn33r committed Sep 11, 2023
1 parent 3d464fc commit 69dd1fd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
9 changes: 7 additions & 2 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
ChangeLog
============

- 1.6.3
- Fix type hints issues (#949)
- Add support for Python beta release 3.12 in CI (#946)
- Add maintainer email in setup.py (3d464fc)

- 1.6.2
- Add support for SSLKEYLOGFILE environment variable (#943)
- Add support for callable header arguments (#932)
Expand All @@ -12,14 +17,14 @@ ChangeLog
- 1.6.0
- Fix teardown issue when ping thread is not properly ended (#918)
- Fix double ping wait time on first ping (#912)
- Minor typehints improvements (eda6724, 54b3013)
- Minor type hints improvements (eda6724, 54b3013)

- 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)
- Add type hints (#908)
- Fix pytype errors (#906)
- Fix args passed to logging function (#898)
- Standardize PEP 3101 formatting (c6a445f)
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.6.2'
release = '1.6.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.6.2"
VERSION = "1.6.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.6.2"
__version__ = "1.6.3"

0 comments on commit 69dd1fd

Please sign in to comment.