From 09ba02ef1556cc67a90d2fff3a2fc3f8333c738b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 23 Mar 2021 14:56:25 +0200 Subject: [PATCH] Update version to 0.13.1 --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f1ee674..c6f783c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.13.1] - 2021-03-23 +### Fixed +- The connect API using the `tokio-openssl` TLS implementation was broken in + previous versions as no TLS connection was established before trying to + establish the WebSocket connection. As such, connections always failed. + Technically this is a breaking change when using this feature but in + practice this a) wouldn't have worked anyway and b) it's unlikely someone + uses the API in a way that would stop compiling now. + ## [0.13.0] - 2021-02-13 ### Changed - Updated to tungstenite 0.13 diff --git a/Cargo.toml b/Cargo.toml index 12c026a..f404e26 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT" homepage = "https://github.com/sdroege/async-tungstenite" repository = "https://github.com/sdroege/async-tungstenite" documentation = "https://docs.rs/async-tungstenite" -version = "0.13.0" +version = "0.13.1" edition = "2018" readme = "README.md"