Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 0.13.0.0 #245

Merged
merged 1 commit into from
Dec 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# CHANGELOG

- 0.13.0.0 (xxx)
* BREAKING: Remove `serverRequirePong` option in favor of the new implementation.
* BREAKING: Client: Rejecting request raises `RequestRejected RequestHead ResponseHead`
- 0.13.0.0 (2023-12-30)
* **BREAKING**: Remove `serverRequirePong` option in favor of the new
implementation.
* **BREAKING**: Client: Rejecting request raises
`RequestRejected RequestHead ResponseHead`
* Timeout initial socket connection after 30s.
* If the socket is closed unexpectedly, raise ConnectionClosed.
* If the socket is closed unexpectedly, raise `ConnectionClosed`.
* Added a way to manually send a Pong message.
* `runServer` now cleans up threads correctly.
* Remove redundant bytestring-builder dependency.
Expand Down
3 changes: 2 additions & 1 deletion websockets.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: websockets
Version: 0.12.7.3
Version: 0.13.0.0

Synopsis:
A sensible and clean way to write WebSocket-capable servers in Haskell.
Expand Down Expand Up @@ -31,6 +31,7 @@ Author: Siniša Biđin <[email protected]>
Jasper Van der Jeugt <[email protected]>
Steffen Schuldenzucker <[email protected]>
Alex Lang <[email protected]>
Domen Kožar
Maintainer: Jasper Van der Jeugt <[email protected]>
Stability: experimental
Category: Network
Expand Down
Loading