Skip to content

Commit

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

* [unreleased](#unreleased)
* [`0.4.0`](#041) - _2023.01.15_
* [`0.4.0`](#040) - _2022.10.20_
* [`0.3.1`](#031) - _2022.03.19_
* [`0.3.0`](#030) - _2021.12.16_
Expand All @@ -30,6 +31,13 @@ The format is based on [Keep a Changelog], and this project adheres to

_nothing new to show for… yet!_

## <a name="041">[0.4.1] - _Minor enhancements_ </a>

- As of [#264](https://github.com/1c3t3a/rust-socketio/pull/264), the callbacks
are now allowed to be `?Sync`.
- As of [#265](https://github.com/1c3t3a/rust-socketio/pull/265), the `Payload`
type now implements `AsRef<u8>`.

## <a name="040">[0.4.0] - _Bugfixes and Reconnection feature_ </a>

_2022.10.20_
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.0"
version = "0.4.1"
authors = ["Bastian Kersting <[email protected]>"]
edition = "2021"
description = "An implementation of a engineio client written in rust."
Expand Down
4 changes: 2 additions & 2 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.0"
version = "0.4.1"
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.0", path = "../engineio" }
rust_engineio = { version = "0.4.1", path = "../engineio" }
base64 = "0.20.0"
bytes = "1"
backoff = "0.4"
Expand Down

0 comments on commit 13f8e96

Please sign in to comment.