From 76b04fede5a96166874c239fd4ef9904d8e92a37 Mon Sep 17 00:00:00 2001 From: Daniel Abramov Date: Sat, 22 Jul 2023 15:37:18 +0100 Subject: [PATCH] Bump version --- CHANGELOG.md | 4 ++++ Cargo.toml | 8 +++----- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9002abb..cb012b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.20.0 + +- Change the buffering behavior for `Sink::send()` and `Sink::feed()`, [see `tungstenite`'s changelog for more details](https://github.com/snapview/tungstenite-rs/blob/master/CHANGELOG.md#0200). + # 0.19.0 - Allow users to enable/disable Nagle algorithm when using `connect()` helpers. diff --git a/Cargo.toml b/Cargo.toml index 332f0e5..1d2e5e3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,9 +6,9 @@ keywords = ["websocket", "io", "web"] authors = ["Daniel Abramov ", "Alexey Galakhov "] license = "MIT" homepage = "https://github.com/snapview/tokio-tungstenite" -documentation = "https://docs.rs/tokio-tungstenite/0.19.0" +documentation = "https://docs.rs/tokio-tungstenite/0.20.0" repository = "https://github.com/snapview/tokio-tungstenite" -version = "0.19.0" +version = "0.20.0" edition = "2018" rust-version = "1.63" include = ["examples/**/*", "src/**/*", "LICENSE", "README.md", "CHANGELOG.md"] @@ -33,9 +33,7 @@ futures-util = { version = "0.3.28", default-features = false, features = ["sink tokio = { version = "1.0.0", default-features = false, features = ["io-util"] } [dependencies.tungstenite] -# TODO use 0.20 release -# version = "0.19.0" -git = "https://github.com/snapview/tungstenite-rs" +version = "0.20.0" default-features = false [dependencies.native-tls-crate]