From b750fbed03bb1588fcf78fe668a31a7a00093caa Mon Sep 17 00:00:00 2001 From: Yegor Sychev Date: Mon, 29 Jun 2026 11:54:06 +0500 Subject: [PATCH 1/2] Add Kazakh number formatting coverage --- .../Localisation/kk/KazakhLocaleParityTests.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/Humanizer.Tests/Localisation/kk/KazakhLocaleParityTests.cs b/tests/Humanizer.Tests/Localisation/kk/KazakhLocaleParityTests.cs index 1fd223d0b..dcd2f5b50 100644 --- a/tests/Humanizer.Tests/Localisation/kk/KazakhLocaleParityTests.cs +++ b/tests/Humanizer.Tests/Localisation/kk/KazakhLocaleParityTests.cs @@ -79,9 +79,11 @@ public void ByteSizeToFullWords_UsesKazakhDataUnits() } [Fact] - public void ByteSizeHumanize_UsesKazakhNumberFormatting() + public void NumberFormatting_UsesStableKazakhSeparators() { Assert.Equal("1,95 KB", ByteSize.FromBytes(2000).Humanize("KB", Kk)); + Assert.Equal("1\u00A0234 KB", ByteSize.FromKilobytes(1234).Humanize("0,0 KB", Kk)); + Assert.Equal("-1,2k", (-1234L).ToMetric(decimals: 1)); } [Theory] From 28d568ab528aa7f3d43db07e54a645a038b543c5 Mon Sep 17 00:00:00 2001 From: Yegor Sychev Date: Mon, 29 Jun 2026 11:57:35 +0500 Subject: [PATCH 2/2] chore: update SDK version to 11.0.100-preview.5.26302.115 --- global.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/global.json b/global.json index f618f76a6..f9e97416a 100644 --- a/global.json +++ b/global.json @@ -1,10 +1,10 @@ { "sdk": { - "version": "11.0.100-preview.3", + "version": "11.0.100-preview.5.26302.115", "rollForward": "latestFeature", "allowPrerelease": true }, "test": { "runner": "Microsoft.Testing.Platform" } -} \ No newline at end of file +}