From ef458c3a8b31c0f6560f59693758245580fb6b90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9=20Larivi=C3=A8re?= Date: Tue, 12 Feb 2019 23:23:05 +0100 Subject: [PATCH 1/3] 0.32.0 --- Directory.Build.props | 18 ++++++++---------- RELEASE_NOTES.md | 9 +++++++++ .../blank/.template.config/template.json | 2 +- 3 files changed, 18 insertions(+), 11 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index 851ad0f46..15ea187e9 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,17 +1,15 @@ - 0.31.0 + 0.32.0 Fabulous Contributors - 0.31.0 - [Fabulous.Core] Added XML docs for Fabulous helpers (https://github.com/fsprojects/Fabulous/pull/284) -[Xamarin.Forms controls] Fixed the TitleView attached property on Page (https://github.com/fsprojects/Fabulous/pull/305) -[Xamarin.Forms controls] Fixed the Accelerator property on MenuItem (https://github.com/fsprojects/Fabulous/pull/301) -[Template] Fixed a typo in assembly name in macOS project (https://github.com/fsprojects/Fabulous/pull/300) -[Template] Fixed an issue where NuGet restore would fail due to a space in path on Windows (https://github.com/fsprojects/Fabulous/pull/290) -[LiveUpdate] Fixed: Using ViewRef produces a "No member found for key Fabulous.DynamicViews.ViewRef" error (https://github.com/fsprojects/Fabulous/pull/286) -[LiveUpdate] Fixed: Using a list a "No member found for key Microsoft.FSharp.Collections.FSharpList" error (https://github.com/fsprojects/Fabulous/pull/286) -[LiveUpdate] Fixed: Calling a function that takes unit from a module in a separate dll produces a "No member found for key" error (https://github.com/fsprojects/Fabulous/pull/286) + 0.32.0 + [Fabulous.Core] Added better type annotation to make the functions init and update easier to read (https://github.com/fsprojects/Fabulous/pull/313) +[Template] Added new UWP template (https://github.com/fsprojects/Fabulous/pull/324) +[Fabulous.Core] Added new helpers to extract data from ViewElement. Helpful for unit testing the views (https://github.com/fsprojects/Fabulous/pull/325) +[Xamarin.Forms controls] Added the property ScrollTo and the event Scrolled for ScrollView (https://github.com/fsprojects/Fabulous/pull/332) +[Fabulous.Core] Changed the modules behind View.*; The builder functions are no longer hidden from IntelliSense (https://github.com/fsprojects/Fabulous/pull/325) +[Xamarin.Forms controls] Fixed the update of TableSection.Title (https://github.com/fsprojects/Fabulous/pull/330) False Apache-2.0 https://github.com/fsprojects/Fabulous diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index bd245e69e..e5ccaa2c4 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,12 @@ +#### 0.32.0 + +* [Fabulous.Core] Added better type annotation to make the functions init and update easier to read (https://github.com/fsprojects/Fabulous/pull/313) +* [Template] Added new UWP template (https://github.com/fsprojects/Fabulous/pull/324) +* [Fabulous.Core] Added new helpers to extract data from ViewElement. Helpful for unit testing the views (https://github.com/fsprojects/Fabulous/pull/325) +* [Xamarin.Forms controls] Added the property ScrollTo and the event Scrolled for ScrollView (https://github.com/fsprojects/Fabulous/pull/332) +* [Fabulous.Core] Changed the modules behind View.*; The builder functions are no longer hidden from IntelliSense (https://github.com/fsprojects/Fabulous/pull/325) +* [Xamarin.Forms controls] Fixed the update of TableSection.Title (https://github.com/fsprojects/Fabulous/pull/330) + #### 0.31.0 * [Fabulous.Core] Added XML docs for Fabulous helpers (https://github.com/fsprojects/Fabulous/pull/284) diff --git a/templates/content/blank/.template.config/template.json b/templates/content/blank/.template.config/template.json index a3ef01e26..12838d41f 100644 --- a/templates/content/blank/.template.config/template.json +++ b/templates/content/blank/.template.config/template.json @@ -155,7 +155,7 @@ "type": "parameter", "dataType": "string", "replaces": "FabulousPkgsVersion", - "defaultValue": "0.31.0" + "defaultValue": "0.32.0" }, "NewtonsoftJsonPkg": { "type": "parameter", From c5534ac6afe4012d6e1e39d77bd9fb738fd3ca0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9=20Larivi=C3=A8re?= Date: Tue, 12 Feb 2019 23:33:06 +0100 Subject: [PATCH 2/3] Missing mention in release notes --- Directory.Build.props | 1 + RELEASE_NOTES.md | 1 + 2 files changed, 2 insertions(+) diff --git a/Directory.Build.props b/Directory.Build.props index 15ea187e9..bdc0bd37f 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -8,6 +8,7 @@ [Template] Added new UWP template (https://github.com/fsprojects/Fabulous/pull/324) [Fabulous.Core] Added new helpers to extract data from ViewElement. Helpful for unit testing the views (https://github.com/fsprojects/Fabulous/pull/325) [Xamarin.Forms controls] Added the property ScrollTo and the event Scrolled for ScrollView (https://github.com/fsprojects/Fabulous/pull/332) +[Xamarin.Forms controls] Added the events ChildrenReordered, MeasureInvalidated, Focused, SizeChanged and Unfocused for VisualElement (https://github.com/fsprojects/Fabulous/pull/327) [Fabulous.Core] Changed the modules behind View.*; The builder functions are no longer hidden from IntelliSense (https://github.com/fsprojects/Fabulous/pull/325) [Xamarin.Forms controls] Fixed the update of TableSection.Title (https://github.com/fsprojects/Fabulous/pull/330) False diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index e5ccaa2c4..2231a6cf3 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -4,6 +4,7 @@ * [Template] Added new UWP template (https://github.com/fsprojects/Fabulous/pull/324) * [Fabulous.Core] Added new helpers to extract data from ViewElement. Helpful for unit testing the views (https://github.com/fsprojects/Fabulous/pull/325) * [Xamarin.Forms controls] Added the property ScrollTo and the event Scrolled for ScrollView (https://github.com/fsprojects/Fabulous/pull/332) +* [Xamarin.Forms controls] Added the events ChildrenReordered, MeasureInvalidated, Focused, SizeChanged and Unfocused for VisualElement (https://github.com/fsprojects/Fabulous/pull/327) * [Fabulous.Core] Changed the modules behind View.*; The builder functions are no longer hidden from IntelliSense (https://github.com/fsprojects/Fabulous/pull/325) * [Xamarin.Forms controls] Fixed the update of TableSection.Title (https://github.com/fsprojects/Fabulous/pull/330) From ba2ad063e062246fda7e374f15eacb91040e22ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9=20Larivi=C3=A8re?= Date: Tue, 12 Feb 2019 23:34:04 +0100 Subject: [PATCH 3/3] Fix formatting --- Directory.Build.props | 2 +- RELEASE_NOTES.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index bdc0bd37f..83bc92414 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -9,7 +9,7 @@ [Fabulous.Core] Added new helpers to extract data from ViewElement. Helpful for unit testing the views (https://github.com/fsprojects/Fabulous/pull/325) [Xamarin.Forms controls] Added the property ScrollTo and the event Scrolled for ScrollView (https://github.com/fsprojects/Fabulous/pull/332) [Xamarin.Forms controls] Added the events ChildrenReordered, MeasureInvalidated, Focused, SizeChanged and Unfocused for VisualElement (https://github.com/fsprojects/Fabulous/pull/327) -[Fabulous.Core] Changed the modules behind View.*; The builder functions are no longer hidden from IntelliSense (https://github.com/fsprojects/Fabulous/pull/325) +[Fabulous.Core] Changed the modules behind View; The builder functions are no longer hidden from IntelliSense (https://github.com/fsprojects/Fabulous/pull/325) [Xamarin.Forms controls] Fixed the update of TableSection.Title (https://github.com/fsprojects/Fabulous/pull/330) False Apache-2.0 diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 2231a6cf3..3021bf4cc 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -5,7 +5,7 @@ * [Fabulous.Core] Added new helpers to extract data from ViewElement. Helpful for unit testing the views (https://github.com/fsprojects/Fabulous/pull/325) * [Xamarin.Forms controls] Added the property ScrollTo and the event Scrolled for ScrollView (https://github.com/fsprojects/Fabulous/pull/332) * [Xamarin.Forms controls] Added the events ChildrenReordered, MeasureInvalidated, Focused, SizeChanged and Unfocused for VisualElement (https://github.com/fsprojects/Fabulous/pull/327) -* [Fabulous.Core] Changed the modules behind View.*; The builder functions are no longer hidden from IntelliSense (https://github.com/fsprojects/Fabulous/pull/325) +* [Fabulous.Core] Changed the modules behind View; The builder functions are no longer hidden from IntelliSense (https://github.com/fsprojects/Fabulous/pull/325) * [Xamarin.Forms controls] Fixed the update of TableSection.Title (https://github.com/fsprojects/Fabulous/pull/330) #### 0.31.0