diff --git a/CHANGELOG.md b/CHANGELOG.md index a04b754f3..3a2a55d03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## ✨ **0.17.1** *(2020-07-01)* + +- #### 🛠 Fixes + + - Fixed regression where component `rendered` lifecycle method was called before children components finish rendering. [[@jstarry], [#1360](https://github.com/yewstack/yew/pull/1360)] + +#### Changelog + ## ✨ **0.17.0** *(2020-06-29)* #### Changelog diff --git a/yew-stdweb/Cargo.toml b/yew-stdweb/Cargo.toml index 910215a2f..8c58ff7b5 100644 --- a/yew-stdweb/Cargo.toml +++ b/yew-stdweb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yew-stdweb" -version = "0.17.0" +version = "0.17.1" edition = "2018" authors = [ "Denis Kolodin ", diff --git a/yew/Cargo.toml b/yew/Cargo.toml index e84e4d5a1..3a5ac618a 100644 --- a/yew/Cargo.toml +++ b/yew/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yew" -version = "0.17.0" +version = "0.17.1" edition = "2018" authors = [ "Denis Kolodin ",