What's Changed
PluralLocalizationFormatter
-
Fix: Auto-detection of PluralLocalizationFormatter does not throw for values not convertible to decimal by @axunonb in #330 Resolves #329 (Thanks to @BtbN)
-
Current behavior, introduced in v3.2.0:
WhenPluralLocalizationFormatter.CanAutoDetect == true
, values that are not convertible todecimal
will throw then trying toIConvertible.ToDecimal(...)
-
New behavior, equivalent to v3.1.0:
WhenPluralLocalizationFormatter.CanAutoDetect == true
, for values that are not convertible todecimal
,IFormatter.TryEvaluateFormat(...)
will returnfalse
-
Other Changes
- EditorConfig and appveyor.yml by @axunonb in #319
- Integrate Cysharp.ZString release v2.5.0 (26 Oct 2022) by @axunonb in #323
- Fix: PluralRules for Czech locale by @alexheb in #325
- Fixes for Demo App and NUnit TestAdapter by @axunonb in #328
New Contributors
Full Changelog: v3.2.0...v3.2.1