Skip to content

Commit

Permalink
chore(deps): bump to v0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Totodore committed Dec 5, 2023
1 parent f3750d0 commit 134f36f
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 17 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.7.3
## socketioxide
* Fix [#189](https://github.com/Totodore/socketioxide/issues/189). Async message handlers were never called because the returned future was not spawned with `tokio::spawn`.

# 0.7.2
## socketioxide
* The `on_disconnect` callback now takes a `SocketRef` rather than an `Arc<Socket>` to match other handlers. It also avoids that the user clone the socket and create a memory leak.
Expand Down
30 changes: 15 additions & 15 deletions 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ hyper-v1 = { package = "hyper", version = "1.0.0-rc.4", features = [
] }

[workspace.package]
version = "0.7.2"
version = "0.7.3"
edition = "2021"
rust-version = "1.67.0"
authors = ["Théodore Prévot <"]
Expand Down
2 changes: 1 addition & 1 deletion socketioxide/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ readme = "../README.md"


[dependencies]
engineioxide = { path = "../engineioxide", version = "0.7.2" }
engineioxide = { path = "../engineioxide", version = "0.7.3" }
futures.workspace = true
tokio = { workspace = true, features = ["rt"] }
serde.workspace = true
Expand Down

0 comments on commit 134f36f

Please sign in to comment.