Skip to content

Commit

Permalink
0.50.1
Browse files Browse the repository at this point in the history
  • Loading branch information
TimLariviere committed Nov 5, 2019
1 parent e38d138 commit 8b5c1b0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
11 changes: 4 additions & 7 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
<Project>
<!-- NuGet Specs -->
<PropertyGroup>
<Version>0.50.0</Version>
<Version>0.50.1</Version>
<Authors>Fabulous Contributors</Authors>
<PackageVersion>0.50.0</PackageVersion>
<PackageReleaseNotes>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.</PackageReleaseNotes>
<PackageVersion>0.50.1</PackageVersion>
<PackageReleaseNotes>[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)</PackageReleaseNotes>
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/fsprojects/Fabulous</PackageProjectUrl>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -162,7 +162,7 @@
"type": "parameter",
"dataType": "string",
"replaces": "FabulousPkgsVersion",
"defaultValue": "0.50.0"
"defaultValue": "0.50.1"
},
"NewtonsoftJsonPkg": {
"type": "parameter",
Expand Down
5 changes: 5 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 8b5c1b0

Please sign in to comment.