Skip to content

Commit 6032ffb

Browse files
authored
chore(deps): bump to v0.10.0
1 parent 5174e35 commit 6032ffb

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.10.0
2+
## socketioxide
3+
* Rework for `emit_with_ack` fns. It now returns an `AckStream` that can be used either as a future when expecting one ack or as a stream when expecting multiple acks. When expecting multiple acks the `AckStream` will yield `AckResult`s as well as their corresponding socket `id`.
4+
15
# 0.9.1
26
## socketioxide
37
* Add `SocketIo::get_socket` and `Operators::get_socket` methods to get a socket ref from its id.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ salvo = { version = "0.63.0", features = ["tower-compat"] }
2727
rust_socketio = { version = "0.4.2", features = ["async"] }
2828

2929
[workspace.package]
30-
version = "0.9.1"
30+
version = "0.10.0"
3131
edition = "2021"
3232
rust-version = "1.67.0"
3333
authors = ["Théodore Prévot <"]

socketioxide/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ readme = "../README.md"
1414

1515

1616
[dependencies]
17-
engineioxide = { path = "../engineioxide", version = "0.9.1" }
17+
engineioxide = { path = "../engineioxide", version = "0.10" }
1818
futures.workspace = true
1919
tokio = { workspace = true, features = ["rt", "time"] }
2020
serde.workspace = true

0 commit comments

Comments
 (0)