diff --git a/Directory.Build.props b/Directory.Build.props index d162c2be6..547cc91be 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,14 +1,11 @@ - 0.50.0 + 0.50.1 Fabulous Contributors - 0.50.0 - BREAKING CHANGES: This release introduces many small breaking changes to provide better type-safety and reducing update calls when using events. -Please read the migration guide to know how to update to this new version (https://fsprojects.github.io/Fabulous/Fabulous.XamarinForms/migration-guide-to-0.50.html) -[Fabulous.XamarinForms] Changed the View API to provide better type-safety for properties (see migration guide for more information) -[Fabulous.XamarinForms] Changed the behavior of event handlers. Events will no longer be triggered by Fabulous.XamarinForms when it's incrementally updating the properties (e.g. changing Text triggering TextChanged). This was changed to prevent unnecessary calls to the update function and in some cases an infinite loop on Android -[Fabulous.CodeGen] Introduced Fabulous.CodeGen, a new library, to help build your own library for your favorite framework using the MVU architecture with Fabulous. More documentation to come. + 0.50.1 + [Fabulous.XamarinForms] [Extensions] Added an extension for FFImageLoading (https://github.com/fsprojects/Fabulous/pull/581) +[Fabulous.XamarinForms] Fixed an issue where an InvalidCastException could occur (https://github.com/fsprojects/Fabulous/pull/589) False Apache-2.0 https://github.com/fsprojects/Fabulous diff --git a/Fabulous.XamarinForms/templates/content/blank/.template.config/template.json b/Fabulous.XamarinForms/templates/content/blank/.template.config/template.json index dfeba8efc..658932aa6 100644 --- a/Fabulous.XamarinForms/templates/content/blank/.template.config/template.json +++ b/Fabulous.XamarinForms/templates/content/blank/.template.config/template.json @@ -7,7 +7,7 @@ "Elmish", "Cross-platform" ], - "name": "Fabulous Xamarin.Forms App v0.50.0", + "name": "Fabulous Xamarin.Forms App v0.50.1", "groupIdentity": "Fabulous.XamarinForms.App", "identity": "Fabulous.XamarinForms.FSharp", "shortName": "fabulous-xf-app", @@ -162,7 +162,7 @@ "type": "parameter", "dataType": "string", "replaces": "FabulousPkgsVersion", - "defaultValue": "0.50.0" + "defaultValue": "0.50.1" }, "NewtonsoftJsonPkg": { "type": "parameter", diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 396717ecc..b43475912 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,8 @@ +#### 0.50.1 + +* [Fabulous.XamarinForms] [Extensions] Added an extension for FFImageLoading (https://github.com/fsprojects/Fabulous/pull/581) +* [Fabulous.XamarinForms] Fixed an issue where an InvalidCastException could occur (https://github.com/fsprojects/Fabulous/pull/589) + #### 0.50.0 BREAKING CHANGES: This release introduces many small breaking changes to provide better type-safety and reducing update calls when using events.