From f5025ed696569cd5e00dfb47ce9a7ff84a296e33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Wed, 23 Mar 2022 14:56:11 +0200 Subject: [PATCH] Release 0.17.2 --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c20cad..3afcf4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ 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.17.2] - 2022-03-23 +### Fixed +- The `Stream` implementation on `WebSocketStream` now implements + `FusedStream` and will always return `None` after an error was returned or + the stream was closed cleanly. +- Fix autobahn testsuite. + ## [0.17.1] - 2022-03-01 ### Fixed - Fix `poll_close` returning WouldBlock error kind. diff --git a/Cargo.toml b/Cargo.toml index d2180e0..3f588cf 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.17.1" +version = "0.17.2" edition = "2018" readme = "README.md" include = ["examples/**/*", "src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]