Skip to content

Commit fe3c3d8

Browse files
committed
release: Prepare for 0.6.0
1 parent 5e02dc4 commit fe3c3d8

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ The format is based on [Keep a Changelog], and this project adheres to
1212
## Overview
1313

1414
* [unreleased](#unreleased)
15+
* [`0.5.0`](#060) - _2024.04.16_
1516
* [`0.5.0`](#050) - _2024.03.31_
1617
* [`0.4.4`](#044) - _2023.11.18_
1718
* [`0.4.3`](#043) - _2023.07.08_
@@ -37,6 +38,15 @@ The format is based on [Keep a Changelog], and this project adheres to
3738

3839
_nothing new to show for… yet!_>
3940

41+
## <a name="060">[0.6.0] - _Multi-payload fix and http 1.0_ </a>
42+
43+
_2024.04.16_
44+
45+
- Fix issues with processing multi-payload messages ([#392](https://github.com/1c3t3a/rust-socketio/pull/392)).
46+
Credits to shenjackyuanjie@.
47+
- Bump http to 1.0 and all dependencies that use http to a version that also uses http 1.0 ([#418](https://github.com/1c3t3a/rust-socketio/pull/418)).
48+
Bumping those dependencies makes this a breaking change.
49+
4050
## <a name="050">[0.5.0] - _Packed with changes!_ </a>
4151

4252
_2024.03.31_

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

engineio/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust_engineio"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["Bastian Kersting <[email protected]>"]
55
edition = "2021"
66
description = "An implementation of a engineio client written in rust."

socketio/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust_socketio"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["Bastian Kersting <[email protected]>"]
55
edition = "2021"
66
description = "An implementation of a socketio client written in rust."
@@ -14,7 +14,7 @@ license = "MIT"
1414
all-features = true
1515

1616
[dependencies]
17-
rust_engineio = { version = "0.5.0", path = "../engineio" }
17+
rust_engineio = { version = "0.6.0", path = "../engineio" }
1818
base64 = "0.21.5"
1919
bytes = "1"
2020
backoff = "0.4"

0 commit comments

Comments
 (0)