Skip to content

Commit

Permalink
Bump version to 0.11.1
Browse files Browse the repository at this point in the history
This change bumps the version of the crate to 0.11.1. The following
notable changes have been made since 0.11.0:
- Fixed ping sending after change in tokio Interval API with version
  1.27.0
  - Fixed potential ping bursts and timeouts when polling is delayed
    excessively
- Adjusted ping timeout error kind from std::io::ErrorKind::Other to
  std::io::ErrorKind::TimedOut
- Switched to using Rust 2021 Edition
- Added GitHub Actions workflow for publishing the crate
  • Loading branch information
d-e-s-o committed Jun 30, 2023
1 parent 6a3ad36 commit b4fa78f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Unreleased
----------
0.11.1
------
- Fixed ping sending after change in `tokio` `Interval` API with version
`1.27.0`
- Fixed potential ping bursts and timeouts when polling is delayed
Expand All @@ -8,6 +8,7 @@ Unreleased
`std::io::ErrorKind::TimedOut`
- Switched to using Rust 2021 Edition
- Added GitHub Actions workflow for publishing the crate
- Bumped `tokio` dependency to `1.27`


0.11.0
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "websocket-util"
version = "0.11.0"
version = "0.11.1"
authors = ["Daniel Mueller <deso@posteo.net>"]
edition = "2021"
rust-version = "1.59"
Expand All @@ -19,7 +19,7 @@ test = []

[dependencies]
futures = {version = "0.3", default-features = false, features = ["async-await", "std"]}
tokio = {version = "1.0", default-features = false, features = ["rt", "time"]}
tokio = {version = "1.27", default-features = false, features = ["rt", "time"]}
tracing = {version = "0.1", default-features = false, features = ["std"]}
tokio-tungstenite = {version = "0.18", default-features = false, features = ["connect"]}

Expand Down

0 comments on commit b4fa78f

Please sign in to comment.