Skip to content

Commit

Permalink
Release 0.5.0 - Add connect Options
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Feb 26, 2024
1 parent e26b319 commit 14926b0
Show file tree
Hide file tree
Showing 7 changed files with 586 additions and 533 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.72.0
toolchain: 1.73.0
override: true
components: rustfmt, clippy

Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.72.0
toolchain: 1.73.0
target: wasm32-unknown-unknown
override: true

Expand All @@ -109,5 +109,5 @@ jobs:

- uses: EmbarkStudios/cargo-deny-action@v1
with:
rust-version: "1.72.0"
rust-version: "1.73.0"
log-level: error
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
## [Unreleased](https://github.com/rerun-io/ewebsock/compare/latest...HEAD)


## [0.4.1](https://github.com/rerun-io/ewebsock/compare/0.4.0...0.4.1) - 2023-10-07
## [0.5.0]((https://github.com/rerun-io/ewebsock/compare/0.4.1...0.5.0) - 2024-02-26
* Add `Options` for controlling max frame size of incoming messages - ([#29](https://github.com/rerun-io/ewebsock/pull/29))


## [0.4.1](https://github.com/rerun-io/ewebsock/compare/0.4.0...0.4.1) - 2024-02-15
* Fix: all errors are reported to the caller via `on_event` ([#26](https://github.com/rerun-io/ewebsock/pull/26))
* Add support for tungstenite 0.21, update MSRV to 1.72 ([#28](https://github.com/rerun-io/ewebsock/pull/28))

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.

1,099 changes: 574 additions & 525 deletions docs/example_app.js

Large diffs are not rendered by default.

Binary file modified docs/example_app_bg.wasm
Binary file not shown.
4 changes: 2 additions & 2 deletions ewebsock/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "ewebsock"
version = "0.4.1"
version = "0.5.0"
authors = ["Emil Ernerfeldt <[email protected]>"]
description = "WebSocket client that works natively and on the web (WASM)"
edition = "2021"
rust-version = "1.72"
rust-version = "1.73"
license = "MIT OR Apache-2.0"
readme = "../README.md"
homepage = "https://github.com/rerun-io/ewebsock"
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
# to the user in the error, instead of "error: invalid channel name '[toolchain]'".

[toolchain]
channel = "1.72.0"
channel = "1.73.0"
components = [ "rustfmt", "clippy" ]
targets = [ "wasm32-unknown-unknown" ]

0 comments on commit 14926b0

Please sign in to comment.