Skip to content

Commit

Permalink
Prep v0.16.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jstarry authored and mergify[bot] committed May 14, 2020
1 parent 6002206 commit fc1861a
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 7 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion yew-components/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yew-components"
version = "0.1.1"
version = "0.1.2"
edition = "2018"
authors = [
"Yew Maintainers <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion yew-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yew-macro"
version = "0.16.0"
version = "0.16.1"
edition = "2018"
authors = ["Justin Starry <[email protected]>"]
repository = "https://github.com/yewstack/yew"
Expand Down
2 changes: 1 addition & 1 deletion yew-router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }

Expand Down
4 changes: 2 additions & 2 deletions yew-stdweb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yew-stdweb"
version = "0.16.0"
version = "0.16.1"
edition = "2018"
authors = [
"Denis Kolodin <[email protected]>",
Expand Down Expand Up @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions yew/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yew"
version = "0.16.0"
version = "0.16.1"
edition = "2018"
authors = [
"Denis Kolodin <[email protected]>",
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit fc1861a

Please sign in to comment.