Skip to content

Commit fc1861a

Browse files
jstarrymergify[bot]
authored andcommitted
Prep v0.16.1 release
1 parent 6002206 commit fc1861a

File tree

6 files changed

+20
-7
lines changed

6 files changed

+20
-7
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## **0.16.1** *(2020-05-14)*
4+
5+
- #### 🛠 Fixes
6+
7+
- Fixed regression where messages sent from `Component::create` were skipped. [[@jstarry], [#1225](https://github.com/yewstack/yew/pull/1225)]
8+
- Worker script is now loaded from absolute path. [[@domdir], [#1175](https://github.com/yewstack/yew/pull/1175)]
9+
- Improved `html!` macro error messages. [[@teymour-aldridge], [#1192](https://github.com/yewstack/yew/pull/1192)], [[@kaoet], [#1219](https://github.com/yewstack/yew/pull/1219)]
10+
11+
#### Changelog
12+
313
## **0.16** *(2020-05-09)*
414

515
#### Changelog
@@ -834,6 +844,7 @@ This release introduces the concept of an `Agent`. Agents are separate activitie
834844
[@charvp]: https://github.com/charvp
835845
[@ctaggart]: https://github.com/ctaggart
836846
[@ctm]: https://github.com/ctm
847+
[@domdir]: https://github.com/domdir
837848
[@D4nte]: https://github.com/D4nte
838849
[@dancespiele]: https://github.com/dancespiele
839850
[@daxpedda]: https://github.com/daxpedda
@@ -848,6 +859,7 @@ This release introduces the concept of an `Agent`. Agents are separate activitie
848859
[@jplatte]: https://github.com/jplatte
849860
[@jstarry]: https://github.com/jstarry
850861
[@kakoc]: https://github.com/kakoc
862+
[@kaoet]: https://github.com/kaoet
851863
[@kellytk]: https://github.com/kellytk
852864
[@kuy]: https://github.com/kuy
853865
[@leo-lb]: https://github.com/leo-lb
@@ -863,6 +875,7 @@ This release introduces the concept of an `Agent`. Agents are separate activitie
863875
[@Stigjb]: https://github.com/Stigjb
864876
[@stkevintan]: https://github.com/stkevintan
865877
[@TheNeikos]: https://github.com/TheNeikos
878+
[@teymour-aldridge]: https://github.com/teymour-aldridge
866879
[@tiziano88]: https://github.com/tiziano88
867880
[@trivigy]: https://github.com/trivigy
868881
[@totorigolo]: https://github.com/totorigolo

yew-components/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yew-components"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2018"
55
authors = [
66
"Yew Maintainers <[email protected]>",

yew-macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yew-macro"
3-
version = "0.16.0"
3+
version = "0.16.1"
44
edition = "2018"
55
authors = ["Justin Starry <[email protected]>"]
66
repository = "https://github.com/yewstack/yew"

yew-router/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ web_sys = [
3131
]
3232

3333
[dependencies]
34-
yew = { version = "0.16.0", path = "../yew", features = ["services", "agent"], default-features= false, optional = true }
34+
yew = { version = "0.16.1", path = "../yew", features = ["services", "agent"], default-features= false, optional = true }
3535
yew-router-macro = { version = "0.12.0", path = "../yew-router-macro" }
3636
yew-router-route-parser = { version = "0.12.0", path = "../yew-router-route-parser" }
3737

yew-stdweb/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yew-stdweb"
3-
version = "0.16.0"
3+
version = "0.16.1"
44
edition = "2018"
55
authors = [
66
"Denis Kolodin <[email protected]>",
@@ -44,7 +44,7 @@ thiserror = "1"
4444
toml = { version = "0.5", optional = true }
4545
wasm-bindgen = { version = "0.2.60", optional = true }
4646
wasm-bindgen-futures = { version = "0.4", optional = true }
47-
yew-macro = { version = "0.16.0", path = "../yew-macro" }
47+
yew-macro = { version = "0.16.1", path = "../yew-macro" }
4848

4949
# Changes here must be reflected in `build.rs`
5050
[target.'cfg(all(target_arch = "wasm32", not(target_os="wasi"), not(cargo_web)))'.dependencies]

yew/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yew"
3-
version = "0.16.0"
3+
version = "0.16.1"
44
edition = "2018"
55
authors = [
66
"Denis Kolodin <[email protected]>",
@@ -44,7 +44,7 @@ thiserror = "1"
4444
toml = { version = "0.5", optional = true }
4545
wasm-bindgen = { version = "0.2.60", optional = true }
4646
wasm-bindgen-futures = { version = "0.4", optional = true }
47-
yew-macro = { version = "0.16.0", path = "../yew-macro" }
47+
yew-macro = { version = "0.16.1", path = "../yew-macro" }
4848

4949
[dependencies.web-sys]
5050
version = "0.3"

0 commit comments

Comments
 (0)