diff --git a/website/blog/2022-11-24-release-0-20.md b/website/blog/2022-11-24-release-0-20.md index bf9c6c45851..95c85b08aaa 100644 --- a/website/blog/2022-11-24-release-0-20.md +++ b/website/blog/2022-11-24-release-0-20.md @@ -3,18 +3,18 @@ title: Releasing Yew 0.20 authors: [hamza] tags: [release] --- -The Yew team is happy announce a new, long overdue, version of Yew: v0.20. +The Yew team is happy to announce a new, long overdue, version of Yew: v0.20. Yew is a framework for creating reliable and efficient web applications. ## What's new -This release comes with new features aimed at improving the user experience, such as server-rendering and render-as-you-fetch approch for data-fetching. +This release comes with new features aimed at improving the user experience, such as server-rendering and render-as-you-fetch approach for data-fetching. ### SSR -Yew now fully supports rendering on the server. Rendering on the server means users will get a rendered HTML and will not have to wait to be able to see anything until the entire WebAssembly bundle is downloaded and initial render has completed. With SSR, the page will be instantly visible and interactable as soon as hydration finishes. +Yew now fully supports rendering on the server. Rendering on the server means users will get a rendered HTML and will not have to wait to be able to see anything until the entire WebAssembly bundle is downloaded and initial render has completed. With SSR, the page will be visible instantly, and interactable as soon as hydration finishes. Learn more at [Server-side rendering](/docs/advanced-topics/server-side-rendering) @@ -22,7 +22,7 @@ Learn more at [Server-side rendering](/docs/advanced-topics/server-side-renderin With SSR comes new ways of data-fetching. The newly added [`use_prepared_state!`](https://api.yew.rs/next/yew/functional/macro.use_prepared_state.html) hook can be used to fetch data while rendering on the and seemlessly use it in the component. -For client-side fetching, Yew now supports render-as-you-fetch approch with [Suspense](/docs/concepts/suspense). +For client-side fetching, Yew now supports render-as-you-fetch approach with [Suspense](/docs/concepts/suspense). ## How to upgrade