v2.1.0
v2.1.0 supports WPF and XamarinForms on a variety of targets.
Breaking changes:
- Function names are now case-sensitive.
e
,pi
,null
,true
, andfalse
keywords are now required to be lower-case.VisibleOrCollapsed
andVisibleOrHidden
functions were deprecated, and will be removed in a future release. You should change your conversions fromVisibleOrCollapsed(x)
tox ? `Visible` : `Collapsed`
- There are several small differences in how/when types are converted. For example, we no longer convert from int to double unless it needs to be used as an operand in an operator such as
+
,*
, etc.