diff --git a/CHANGELOG.md b/CHANGELOG.md index 1aef306..796b3e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/Cargo.lock b/Cargo.lock index 39d6ac5..a6db756 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1180,7 +1180,7 @@ dependencies = [ [[package]] name = "ewebsock" -version = "0.6.0" +version = "0.7.0" dependencies = [ "async-stream", "document-features", diff --git a/README.md b/README.md index 7c5055c..f97c916 100644 --- a/README.md +++ b/README.md @@ -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) ``` diff --git a/ewebsock/Cargo.toml b/ewebsock/Cargo.toml index 3ce7474..6bd3cfd 100644 --- a/ewebsock/Cargo.toml +++ b/ewebsock/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ewebsock" -version = "0.6.0" +version = "0.7.0" authors = ["Emil Ernerfeldt "] description = "WebSocket client that works natively and on the web (WASM)" edition = "2021" diff --git a/release_checklist.md b/release_checklist.md index 852de45..adbe37d 100644 --- a/release_checklist.md +++ b/release_checklist.md @@ -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'`