Prep v0.17.2 release (#1375)

This commit is contained in:
Justin Starry 2020-07-04 22:58:43 +08:00 committed by GitHub
parent 34b4f6c0c3
commit 142c6b58b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 17 additions and 2 deletions

View File

@ -1,5 +1,18 @@
# Changelog
## ✨ **0.17.2** *(2020-07-04)*
#### Changelog
- #### ⚡️ Features
- `Key` now implements `Deref<Target = str>`. [[@faulesocke], [#1370](https://github.com/yewstack/yew/pull/1370)]
- #### 🛠 Fixes
- Uncontrolled input values are no cleared when component renders. [[@jstarry], [#1374](https://github.com/yewstack/yew/pull/1374)]
- Revert lazy rendering behavior introduced in `0.17.0`. Yew will render the component between each update. [[@jstarry], [#1373](https://github.com/yewstack/yew/pull/1373)]
## ✨ **0.17.1** *(2020-07-01)*
#### Changelog
@ -46,6 +59,7 @@
- #### 🚨 Breaking changes
- Renders are now done lazily and will not be executed until all updates have been processed. [[@jstarry], [#1309](https://github.com/yewstack/yew/pull/1309)]
- `ConsoleService`, `DialogService`, `IntervalService`, `RenderService`, `TimeoutService`, and `WebSocketService` methods are now static. [[@teymour-aldridge], [#1313](https://github.com/yewstack/yew/pull/1313)]
- `html!`: `Children` no longer implements `Renderable`. [[@siku2], [#1275](https://github.com/yewstack/yew/pull/1275)]
@ -932,6 +946,7 @@ This release introduces the concept of an `Agent`. Agents are separate activitie
[@dermetfan]: https://github.com/dermetfan
[@detegr]: https://github.com/Detegr
[@dunnock]: https://github.com/dunnock
[@faulesocke]: https://github.com/faulesocke
[@hgzimmerman]: https://github.com/hgzimmerman
[@izissise]: https://github.com/izissise
[@joaquindk]: https://github.com/joaquindk

View File

@ -1,6 +1,6 @@
[package]
name = "yew-stdweb"
version = "0.17.1"
version = "0.17.2"
edition = "2018"
authors = [
"Denis Kolodin <deniskolodin@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "yew"
version = "0.17.1"
version = "0.17.2"
edition = "2018"
authors = [
"Denis Kolodin <deniskolodin@gmail.com>",