-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
619 additions
and
602 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
## Unreleased | ||
|
||
## 0.2.0 - 2022-04-08 | ||
* Support WSS (WebSocket Secure) / TLS | ||
* Improve error reporting | ||
* `EventHandler` no longer needs to be `Sync` | ||
|
||
## 0.1.0 - 2022-02-23 | ||
Initial commit: a simple WebSocket client library that works on both native and on the web. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash | ||
#!/usr/bin/env bash | ||
# This scripts runs various CI-like checks in a convenient way. | ||
set -eux | ||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
- [ ] Update `CHANGELOG.md` | ||
- [ ] Bump version number | ||
- [ ] `./check.sh` | ||
- [ ] `./example_app/build_web.sh --open` | ||
- [ ] `git commit -m 'Release 0.x.0 - summary'` | ||
- [ ] `(cd ewebsock && cargo publish)` | ||
- [ ] `git tag -a 0.x.0 -m 'Release 0.x.0 - summary'` | ||
- [ ] `git push && git push --tags` | ||
- [ ] Check that CI is green | ||
- [ ] Do a GitHub release: https://github.com/emilk/rerun-io/ewebsock/new | ||
- [ ] Post on Twitter |