diff --git a/CHANGELOG.md b/CHANGELOG.md index 56944d7f..f7a0efe1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.10.0 +## socketioxide +* 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`. + # 0.9.1 ## socketioxide * Add `SocketIo::get_socket` and `Operators::get_socket` methods to get a socket ref from its id. diff --git a/Cargo.toml b/Cargo.toml index 1aef5f5c..46037ae5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ salvo = { version = "0.63.0", features = ["tower-compat"] } rust_socketio = { version = "0.4.2", features = ["async"] } [workspace.package] -version = "0.9.1" +version = "0.10.0" edition = "2021" rust-version = "1.67.0" authors = ["Théodore Prévot <"] diff --git a/socketioxide/Cargo.toml b/socketioxide/Cargo.toml index ef6c54e4..4900dcc5 100644 --- a/socketioxide/Cargo.toml +++ b/socketioxide/Cargo.toml @@ -14,7 +14,7 @@ readme = "../README.md" [dependencies] -engineioxide = { path = "../engineioxide", version = "0.9.1" } +engineioxide = { path = "../engineioxide", version = "0.10" } futures.workspace = true tokio = { workspace = true, features = ["rt", "time"] } serde.workspace = true