mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
Prep v0.16.1 release
This commit is contained in:
parent
207208ee4b
commit
bc116a42d9
13
CHANGELOG.md
13
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
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "yew-components"
|
||||
version = "0.1.1"
|
||||
version = "0.1.2"
|
||||
edition = "2018"
|
||||
authors = [
|
||||
"Yew Maintainers <maintainers@yew.rs>",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "yew-macro"
|
||||
version = "0.16.0"
|
||||
version = "0.16.1"
|
||||
edition = "2018"
|
||||
authors = ["Justin Starry <justin@yew.rs>"]
|
||||
repository = "https://github.com/yewstack/yew"
|
||||
|
||||
@ -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" }
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "yew-stdweb"
|
||||
version = "0.16.0"
|
||||
version = "0.16.1"
|
||||
edition = "2018"
|
||||
authors = [
|
||||
"Denis Kolodin <deniskolodin@gmail.com>",
|
||||
@ -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]
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "yew"
|
||||
version = "0.16.0"
|
||||
version = "0.16.1"
|
||||
edition = "2018"
|
||||
authors = [
|
||||
"Denis Kolodin <deniskolodin@gmail.com>",
|
||||
@ -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"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user