Skip to content

Commit

Permalink
chore: Prepare for 0.4.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
1c3t3a committed Jul 8, 2023
1 parent a9a81e9 commit 095db3a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@ The format is based on [Keep a Changelog], and this project adheres to

_nothing new to show for… yet!_

## <a name="043">[0.4.3] - _Bugfix!_ </a>

_2023.07.08_

- Fix of [#323](https://github.com/1c3t3a/rust-socketio/issues/323)
- Marking the async feature optional

## <a name="042">[0.4.2] - _Stabilizing the async interface!_ </a>

_2023.06.25_
Expand Down
4 changes: 2 additions & 2 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 engineio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust_engineio"
version = "0.4.2"
version = "0.4.3"
authors = ["Bastian Kersting <[email protected]>"]
edition = "2021"
description = "An implementation of a engineio client written in rust."
Expand Down
6 changes: 3 additions & 3 deletions socketio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust_socketio"
version = "0.4.2"
version = "0.4.3"
authors = ["Bastian Kersting <[email protected]>"]
edition = "2021"
description = "An implementation of a socketio client written in rust."
Expand All @@ -11,7 +11,7 @@ categories = ["network-programming", "web-programming", "web-programming::websoc
license = "MIT"

[dependencies]
rust_engineio = { version = "0.4.2", path = "../engineio" }
rust_engineio = { version = "0.4.3", path = "../engineio" }
base64 = "0.21.2"
bytes = "1"
backoff = "0.4"
Expand All @@ -36,7 +36,7 @@ version = "1.16.1"
features = ["macros"]

[features]
default = ["async"] # remove this before merging, just here so that test run through
default = []
async-callbacks = ["rust_engineio/async-callbacks"]
async = ["async-callbacks", "rust_engineio/async", "tokio", "futures-util", "async-stream"]

Expand Down

0 comments on commit 095db3a

Please sign in to comment.