From 67202a283f873b3395ad348a6903003568b37cd1 Mon Sep 17 00:00:00 2001 From: Naja Melan Date: Fri, 2 Aug 2019 22:10:31 +0200 Subject: [PATCH] Fix link to changelog in Readme --- CHANGELOG.md | 17 +++++++++++------ Cargo.toml | 2 +- Cargo.yml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 5 files changed, 15 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d4153c6..b64dc0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,14 @@ # Changelog -## 0.2 - 2019-08-02 +## 0.2.1 - 2019-08-02 -- **BREAKING CHANGE**: Fix: Correctly wake up tasks waiting for a next message if the connection gets closed externally. - This prevents these tasks from hanging indefinitely. - As a consequence, `WsStream::close` now returns a `Result`, taking into account that if the connection is already - closed, we don't have the `CloseEvent`. Instead a `WsErr` of kind `WsErrKind::ConnectionNotOpen` is returned. -- update to async_runtime 0.3 + - Fix incorrect link to changelog in readme + + +## 0.2.0 - 2019-08-02 + + - **BREAKING CHANGE**: Fix: Correctly wake up tasks waiting for a next message if the connection gets closed externally. + This prevents these tasks from hanging indefinitely. + As a consequence, `WsStream::close` now returns a `Result`, taking into account that if the connection is already + closed, we don't have the `CloseEvent`. Instead a `WsErr` of kind `WsErrKind::ConnectionNotOpen` is returned. + - update to async_runtime 0.3 diff --git a/Cargo.toml b/Cargo.toml index be07a6d..5eb8a8d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -61,4 +61,4 @@ license = "Unlicense" name = "ws_stream_wasm" readme = "README.md" repository = "https://github.com/najamelan/ws_stream_wasm" -version = "0.2.0" +version = "0.2.1" diff --git a/Cargo.yml b/Cargo.yml index b8f683f..950f149 100644 --- a/Cargo.yml +++ b/Cargo.yml @@ -1,7 +1,7 @@ package: name : ws_stream_wasm - version : 0.2.0 + version : 0.2.1 edition : '2018' authors : [ Naja Melan ] description : A convenience library for using websockets in WASM diff --git a/README.md b/README.md index 0f49a0f..2b6d1af 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ With raw Cargo.toml ### Upgrade -Please check out the [changelog](https://github.com/najamelan/ws_wasm_stream/blob/master/CHANGELOG.md) when upgrading. +Please check out the [changelog](https://github.com/najamelan/ws_stream_wasm/blob/master/CHANGELOG.md) when upgrading. ### Dependencies diff --git a/src/lib.rs b/src/lib.rs index a6b2430..eeba2a9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -58,7 +58,7 @@ //! //! ### Upgrade //! -//! Please check out the [changelog](https://github.com/najamelan/ws_wasm_stream/blob/master/CHANGELOG.md) when upgrading. +//! Please check out the [changelog](https://github.com/najamelan/ws_stream_wasm/blob/master/CHANGELOG.md) when upgrading. //! //! ### Dependencies //!