chore(perf): bump version to 9.0.40 to match MAUI 9.0.40
Update version from 9.0.0 to 9.0.40 to align precisely with MAUI 9.0.40 release. Update CHANGELOG, package metadata, and templates. Fix thread safety issue in FontFallbackManager by changing _glyphCache from Dictionary to ConcurrentDictionary to prevent race conditions during concurrent glyph lookups.
This commit is contained in:
@@ -224,7 +224,7 @@ public class VersionTrackingService : IVersionTracking
|
||||
{
|
||||
var assembly = Assembly.GetEntryAssembly() ?? Assembly.GetExecutingAssembly();
|
||||
var version = assembly.GetName().Version;
|
||||
return version != null ? $"{version.Major}.{version.Minor}.{version.Build}" : "9.0.0";
|
||||
return version != null ? $"{version.Major}.{version.Minor}.{version.Build}" : "9.0.40";
|
||||
}
|
||||
|
||||
private static string GetAssemblyBuild()
|
||||
|
||||
Reference in New Issue
Block a user