Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .nuget/Codebelt.Unitify/PackageReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Version: 10.0.11
Availability: .NET 10 and .NET 9

# ALM
- CHANGED Dependencies have been upgraded to the latest compatible versions for all supported target frameworks (TFMs)

Version: 10.0.10
Availability: .NET 10 and .NET 9

Expand Down
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ For more details, please refer to `PackageReleaseNotes.txt` on a per assembly ba
> [!NOTE]
> Changelog entries prior to version 9.0.0 was migrated from previous versions of [Cuemon.Core](https://github.com/gimlichael/Cuemon/commit/83e0c7af2cdaa07351e878fa7276558838f2e7e6).

## [10.0.11] - 2026-08-16

This is a patch release focused on dependency upgrades, Docker test environment consolidation, and test infrastructure improvements.

### Changed

- Codebelt.Extensions.Xunit.App upgraded from 11.1.2 to 11.2.1 for enhanced test infrastructure support,
- Cuemon.Core upgraded from 10.5.5 to 10.7.0 with latest improvements across all supported target frameworks,
- Microsoft.NET.Test.Sdk upgraded from 18.8.1 to 18.9.0 for improved test runner compatibility,
- Docker test environment configuration consolidated from separate net9 and net10 runners into a single multi-TFM image supporting .NET 8, 9, 10, and 11, simplifying test matrix management and CI configuration.

## [10.0.10] - 2026-07-20

This is a patch release focused on dependency upgrades, code formatting standardization,
Expand Down Expand Up @@ -196,7 +207,8 @@ This is a service update that primarily focuses on package dependencies and mino
- ByteUnit class in the Codebelt.Unitify namespace to have 0 duplicated blocks of lines of code
- UnitPrefixFormatter class in the Codebelt.Unitify namespace to be compliant with https://docs.microsoft.com/en-us/dotnet/fundamentals/code-analysis/quality-rules/ca1822

[Unreleased]: https://github.com/codebeltnet/unitify/compare/v10.0.10...HEAD
[Unreleased]: https://github.com/codebeltnet/unitify/compare/v10.0.11...HEAD
[10.0.11]: https://github.com/codebeltnet/unitify/compare/v10.0.10...v10.0.11
[10.0.10]: https://github.com/codebeltnet/unitify/compare/v10.0.9...v10.0.10
[10.0.9]: https://github.com/codebeltnet/unitify/compare/v10.0.8...v10.0.9
[10.0.8]: https://github.com/codebeltnet/unitify/compare/v10.0.7...v10.0.8
Expand Down
6 changes: 3 additions & 3 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="Codebelt.Extensions.Xunit.App" Version="11.1.2" />
<PackageVersion Include="Cuemon.Core" Version="10.5.5" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.8.1" />
<PackageVersion Include="Codebelt.Extensions.Xunit.App" Version="11.2.1" />
<PackageVersion Include="Cuemon.Core" Version="10.7.0" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.9.0" />
<PackageVersion Include="MinVer" Version="7.0.0" />
<PackageVersion Include="coverlet.collector" Version="10.0.1" />
<PackageVersion Include="coverlet.msbuild" Version="10.0.1" />
Expand Down
9 changes: 2 additions & 7 deletions testenvironments.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,9 @@
"wslDistribution": "Ubuntu-24.04"
},
{
"name": "Docker-Ubuntu (net9)",
"name": "Docker-Ubuntu",
"type": "docker",
"dockerImage": "codebeltnet/ubuntu-testrunner:9"
},
{
"name": "Docker-Ubuntu (net10)",
"type": "docker",
"dockerImage": "codebeltnet/ubuntu-testrunner:10"
"dockerImage": "codebeltnet/ubuntu-testrunner:8-9-10-11"
}
]
}
Loading