Skip to content

Commit

Permalink
1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
engn33r committed Dec 3, 2023
1 parent 811aa84 commit 85de6c7
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 4 deletions.
1 change: 0 additions & 1 deletion .build/__local__.json

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
.\#*

build
.build/
dist
*.egg-info

Expand Down
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
ChangeLog
============

- 1.7.0
- Renamed `mask` variable in ABNF to prevent name collision with `mask()` function (9b51f73)
- Fixed old http import of HTTPStatus in _handshake.py (9b51f73)
- Add `send_text()` and `send_bytes()` to _app.py (#953)
- Improved typehint support (#953, 9b51f73, 8b73d00)
- General readability improvements, made all string concatenations use f-strings (#909, 780584f, 3eabc6e)
- Applied black formatting style to code (da7f286)

- 1.6.4
- Fix #952, add support for HTTP 307 and 308 redirect codes (69468ad)

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.4"
release = "1.7.0"


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

VERSION = "1.6.4"
VERSION = "1.7.0"

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.4"
__version__ = "1.7.0"

0 comments on commit 85de6c7

Please sign in to comment.