Skip to content

Commit

Permalink
Fix websocket reconnect limit (#43)
Browse files Browse the repository at this point in the history
* fix use_websocket reconnect_limit defaults to  for infinite retries, fix #41

* release 0.3.2
  • Loading branch information
jetli authored May 26, 2024
1 parent ed1e0b8 commit 12c6aa6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions crates/yew-hooks/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yew-hooks"
version = "0.3.1"
version = "0.3.2"
edition = "2021"
authors = ["Jet Li <[email protected]>"]
categories = ["gui", "wasm", "web-programming"]
Expand All @@ -17,7 +17,7 @@ documentation = "https://docs.rs/yew-hooks/"
[dependencies]
log = "0.4"
yew = { version = "0.21.0", features = ["csr"] }
gloo = "0.10"
gloo = "0.11"
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
serde = "1"
Expand Down
4 changes: 2 additions & 2 deletions examples/yew-app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ version = "0.1.0"

[dependencies]
log = "0.4"
gloo = "0.10"
gloo = "0.11"
js-sys = "0.3"
serde = "1"
reqwest = { version = "0.11.7", features = ["json"] }
reqwest = { version = "0.12.4", features = ["json"] }
yew = { version = "0.21.0", features = ["csr"] }
yew-router = { version = "0.18.0" }
yew-hooks = { path = "../../crates/yew-hooks" }
Expand Down

0 comments on commit 12c6aa6

Please sign in to comment.