diff --git a/CHANGELOG.md b/CHANGELOG.md index c08e06330f1..b207a60b264 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## ✨ **0.16.1** *(2020-05-14)* + +- #### 🛠 Fixes + + - Fixed regression where messages sent from `Component::create` were skipped. [[@jstarry], [#1225](https://github.com/yewstack/yew/pull/1225)] + - Worker script is now loaded from absolute path. [[@domdir], [#1175](https://github.com/yewstack/yew/pull/1175)] + - Improved `html!` macro error messages. [[@teymour-aldridge], [#1192](https://github.com/yewstack/yew/pull/1192)], [[@kaoet], [#1219](https://github.com/yewstack/yew/pull/1219)] + +#### Changelog + ## ✨ **0.16** *(2020-05-09)* #### Changelog @@ -834,6 +844,7 @@ This release introduces the concept of an `Agent`. Agents are separate activitie [@charvp]: https://github.com/charvp [@ctaggart]: https://github.com/ctaggart [@ctm]: https://github.com/ctm +[@domdir]: https://github.com/domdir [@D4nte]: https://github.com/D4nte [@dancespiele]: https://github.com/dancespiele [@daxpedda]: https://github.com/daxpedda @@ -848,6 +859,7 @@ This release introduces the concept of an `Agent`. Agents are separate activitie [@jplatte]: https://github.com/jplatte [@jstarry]: https://github.com/jstarry [@kakoc]: https://github.com/kakoc +[@kaoet]: https://github.com/kaoet [@kellytk]: https://github.com/kellytk [@kuy]: https://github.com/kuy [@leo-lb]: https://github.com/leo-lb @@ -863,6 +875,7 @@ This release introduces the concept of an `Agent`. Agents are separate activitie [@Stigjb]: https://github.com/Stigjb [@stkevintan]: https://github.com/stkevintan [@TheNeikos]: https://github.com/TheNeikos +[@teymour-aldridge]: https://github.com/teymour-aldridge [@tiziano88]: https://github.com/tiziano88 [@trivigy]: https://github.com/trivigy [@totorigolo]: https://github.com/totorigolo diff --git a/yew-components/Cargo.toml b/yew-components/Cargo.toml index 8a84d3c8204..7fc29c7143d 100644 --- a/yew-components/Cargo.toml +++ b/yew-components/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yew-components" -version = "0.1.1" +version = "0.1.2" edition = "2018" authors = [ "Yew Maintainers ", diff --git a/yew-macro/Cargo.toml b/yew-macro/Cargo.toml index f5cb5f69505..ae7975867db 100644 --- a/yew-macro/Cargo.toml +++ b/yew-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yew-macro" -version = "0.16.0" +version = "0.16.1" edition = "2018" authors = ["Justin Starry "] repository = "https://github.com/yewstack/yew" diff --git a/yew-router/Cargo.toml b/yew-router/Cargo.toml index 2f50436e27d..af2aa89952d 100644 --- a/yew-router/Cargo.toml +++ b/yew-router/Cargo.toml @@ -31,7 +31,7 @@ web_sys = [ ] [dependencies] -yew = { version = "0.16.0", path = "../yew", features = ["services", "agent"], default-features= false, optional = true } +yew = { version = "0.16.1", path = "../yew", features = ["services", "agent"], default-features= false, optional = true } yew-router-macro = { version = "0.12.0", path = "../yew-router-macro" } yew-router-route-parser = { version = "0.12.0", path = "../yew-router-route-parser" } diff --git a/yew-stdweb/Cargo.toml b/yew-stdweb/Cargo.toml index ecbd9276d55..6ca7b85bf2f 100644 --- a/yew-stdweb/Cargo.toml +++ b/yew-stdweb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yew-stdweb" -version = "0.16.0" +version = "0.16.1" edition = "2018" authors = [ "Denis Kolodin ", @@ -44,7 +44,7 @@ thiserror = "1" toml = { version = "0.5", optional = true } wasm-bindgen = { version = "0.2.60", optional = true } wasm-bindgen-futures = { version = "0.4", optional = true } -yew-macro = { version = "0.16.0", path = "../yew-macro" } +yew-macro = { version = "0.16.1", path = "../yew-macro" } # Changes here must be reflected in `build.rs` [target.'cfg(all(target_arch = "wasm32", not(target_os="wasi"), not(cargo_web)))'.dependencies] diff --git a/yew/Cargo.toml b/yew/Cargo.toml index 44477b7f1df..8f110ca1b73 100644 --- a/yew/Cargo.toml +++ b/yew/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yew" -version = "0.16.0" +version = "0.16.1" edition = "2018" authors = [ "Denis Kolodin ", @@ -44,7 +44,7 @@ thiserror = "1" toml = { version = "0.5", optional = true } wasm-bindgen = { version = "0.2.60", optional = true } wasm-bindgen-futures = { version = "0.4", optional = true } -yew-macro = { version = "0.16.0", path = "../yew-macro" } +yew-macro = { version = "0.16.1", path = "../yew-macro" } [dependencies.web-sys] version = "0.3"