mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
Prep v0.17.3 release (#1495)
This commit is contained in:
parent
790ea8dd09
commit
ab9f92b1d9
19
CHANGELOG.md
19
CHANGELOG.md
@ -1,5 +1,21 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## ✨ **0.17.3** *(2020-08-16)*
|
||||||
|
|
||||||
|
#### Changelog
|
||||||
|
|
||||||
|
- #### ⚡️ Features
|
||||||
|
|
||||||
|
- Added `prompt` function to `DialogService`. [[@teymour-aldridge], [#1350](https://github.com/yewstack/yew/pull/1350)]
|
||||||
|
- Implement `From<&[T]>` where `T: AsRef<str>` for `Classes`. [[@alexschrod], [#1448](https://github.com/yewstack/yew/pull/1448)]
|
||||||
|
- Added `batch_callback_once` to `ComponentLink`. [[@ctron], [#1463](https://github.com/yewstack/yew/pull/1463)]
|
||||||
|
|
||||||
|
- #### 🛠 Fixes
|
||||||
|
|
||||||
|
- Properties with default type params can now have `Properties` trait derived. [[@siku2], [#1408](https://github.com/yewstack/yew/pull/1408)]
|
||||||
|
- `html!`: Improved compile error messages for invalid list fragments. [[@siku2], [#1445](https://github.com/yewstack/yew/pull/1445)]
|
||||||
|
- Batch component updates are processed more efficiently. [[@bakape], [#1470](https://github.com/yewstack/yew/pull/1470)]
|
||||||
|
|
||||||
## ✨ **0.17.2** *(2020-07-04)*
|
## ✨ **0.17.2** *(2020-07-04)*
|
||||||
|
|
||||||
#### Changelog
|
#### Changelog
|
||||||
@ -928,8 +944,10 @@ This release introduces the concept of an `Agent`. Agents are separate activitie
|
|||||||
## ✨ **0.1** *(2017-12-31)*
|
## ✨ **0.1** *(2017-12-31)*
|
||||||
|
|
||||||
[Web Workers API]: https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API
|
[Web Workers API]: https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API
|
||||||
|
[@alexschrod]: https://github.com/alexschrod
|
||||||
[@AlephAlpha]: https://github.com/AlephAlpha
|
[@AlephAlpha]: https://github.com/AlephAlpha
|
||||||
[@astraw]: https://github.com/astraw
|
[@astraw]: https://github.com/astraw
|
||||||
|
[@bakape]: https://github.com/bakape
|
||||||
[@bryanjswift]: https://github.com/bryanjswift
|
[@bryanjswift]: https://github.com/bryanjswift
|
||||||
[@boydjohnson]: https://github.com/boydjohnson
|
[@boydjohnson]: https://github.com/boydjohnson
|
||||||
[@captain-yossarian]: https://github.com/captain-yossarian
|
[@captain-yossarian]: https://github.com/captain-yossarian
|
||||||
@ -937,6 +955,7 @@ This release introduces the concept of an `Agent`. Agents are separate activitie
|
|||||||
[@charvp]: https://github.com/charvp
|
[@charvp]: https://github.com/charvp
|
||||||
[@ctaggart]: https://github.com/ctaggart
|
[@ctaggart]: https://github.com/ctaggart
|
||||||
[@ctm]: https://github.com/ctm
|
[@ctm]: https://github.com/ctm
|
||||||
|
[@ctron]: https://github.com/ctron
|
||||||
[@domdir]: https://github.com/domdir
|
[@domdir]: https://github.com/domdir
|
||||||
[@D4nte]: https://github.com/D4nte
|
[@D4nte]: https://github.com/D4nte
|
||||||
[@dancespiele]: https://github.com/dancespiele
|
[@dancespiele]: https://github.com/dancespiele
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "yew-stdweb"
|
name = "yew-stdweb"
|
||||||
version = "0.17.2"
|
version = "0.17.3"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = [
|
authors = [
|
||||||
"Denis Kolodin <deniskolodin@gmail.com>",
|
"Denis Kolodin <deniskolodin@gmail.com>",
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "yew"
|
name = "yew"
|
||||||
version = "0.17.2"
|
version = "0.17.3"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = [
|
authors = [
|
||||||
"Denis Kolodin <deniskolodin@gmail.com>",
|
"Denis Kolodin <deniskolodin@gmail.com>",
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "yewtil"
|
name = "yewtil"
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
authors = ["Henry Zimmerman <zimhen7@gmail.com>"]
|
authors = ["Henry Zimmerman <zimhen7@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Utility crate for Yew"
|
description = "Utility crate for Yew"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user