Skip to content

Commit

Permalink
Release 0.7.0 - bug fix, custom headers, new tungstenite
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Oct 10, 2024
1 parent 5328e3d commit dc40f02
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
## [Unreleased](https://github.com/rerun-io/ewebsock/compare/latest...HEAD)


## [0.7.0]((https://github.com/rerun-io/ewebsock/compare/0.6.0...0.7.0) - 2024-10-10
* Fix crash when error_event does not have "message" or "error" fields [#37](https://github.com/rerun-io/ewebsock/pull/37) (thanks [@romamik](https://github.com/romamik)!)
* Add `Options::additional_headers` and `subprotocols` [#27](https://github.com/rerun-io/ewebsock/pull/27) (thanks [@Its-Just-Nans](https://github.com/Its-Just-Nans)!)
* Update to `tungstenite` 0.23 [#39](https://github.com/rerun-io/ewebsock/pull/39) (thanks [@Its-Just-Nans](https://github.com/Its-Just-Nans)!)
* Add support for tungstenite 0.24 [#46](https://github.com/rerun-io/ewebsock/pull/46)


## [0.6.0]((https://github.com/rerun-io/ewebsock/compare/0.5.0...0.6.0) - 2024-05-21
* Allow closing the connecting by returning `ControlFlow::Break` [#33](https://github.com/rerun-io/ewebsock/pull/33)
* Update MSRV to Rust 1.76 [#35](https://github.com/rerun-io/ewebsock/pull/35)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ cargo run -p example_app

# web mode
# install trunk with `cargo install trunk` - https://trunkrs.dev/
cd example_app/ && trunk serve
(cd example_app && trunk serve)
```
2 changes: 1 addition & 1 deletion ewebsock/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ewebsock"
version = "0.6.0"
version = "0.7.0"
authors = ["Emil Ernerfeldt <[email protected]>"]
description = "WebSocket client that works natively and on the web (WASM)"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion release_checklist.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- [ ] Update `CHANGELOG.md` with `./scripts/generate_changelog.py`
- [ ] Bump version number
- [ ] `./example_app/build_web.sh --open`
- [ ] `(cd example_app && trunk serve)`
- [ ] `git commit -m 'Release 0.x.0 - summary'`
- [ ] `cargo publish -p ewebsock`
- [ ] `git tag -a 0.x.0 -m 'Release 0.x.0 - summary'`
Expand Down

0 comments on commit dc40f02

Please sign in to comment.