Skip to content

Commit

Permalink
chore(deps): prepare v0.15.0 (#383)
Browse files Browse the repository at this point in the history
  • Loading branch information
Totodore authored Oct 20, 2024
1 parent 6ad87c4 commit ed1b8fb
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# 0.15.0
## socketioxide
* **(Breaking)**: New parsing system. You can now serialize and deserialize binary data inside your own types.
It also improve performances by avoiding unnecessary allocations.
* fix: missing extractor error logs for async message handlers.
* feat: add custom compiler error for unimplemented handler traits.
* deps: switch from `tower` to `tower-service` and `tower-layer` subcrates.
* deps: bump `tokio` to 1.40.
* deps: bump `http` to 1.1.
* deps: bump `hyper` to 1.5.

# 0.14.0

## socketioxide
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "0.14.1"
version = "0.15.0"
edition = "2021"
rust-version = "1.75.0"
authors = ["Théodore Prévot <"]
Expand Down
2 changes: 1 addition & 1 deletion crates/parser-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ bytes.workspace = true
itoa.workspace = true
serde.workspace = true
serde_json.workspace = true
socketioxide-core = { version = "0.14.1", path = "../socketioxide-core" }
socketioxide-core = { version = "0.15.0", path = "../socketioxide-core" }

[dev-dependencies]
criterion.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/parser-msgpack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ bytes.workspace = true
serde.workspace = true
rmp = "0.8"
rmp-serde = "1.3"
socketioxide-core = { version = "0.14.1", path = "../socketioxide-core" }
socketioxide-core = { version = "0.15.0", path = "../socketioxide-core" }

[dev-dependencies]
serde_json.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/socketioxide-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ license.workspace = true

[dependencies]
bytes.workspace = true
engineioxide = { version = "0.14.1", path = "../engineioxide" }
engineioxide = { version = "0.15.0", path = "../engineioxide" }
serde.workspace = true
thiserror.workspace = true
arbitrary = { version = "1.3.2", features = ["derive"], optional = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/socketioxide/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ readme = "../README.md"


[dependencies]
engineioxide = { path = "../engineioxide", version = "0.14.1" }
socketioxide-core = { path = "../socketioxide-core", version = "0.14.1" }
engineioxide = { path = "../engineioxide", version = "0.15.0" }
socketioxide-core = { path = "../socketioxide-core", version = "0.15.0" }

bytes.workspace = true
futures-core.workspace = true
Expand Down

0 comments on commit ed1b8fb

Please sign in to comment.