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
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Version: 1.3.3
Availability: .NET 10 and .NET 9

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

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

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Version: 1.3.3
Availability: .NET 10 and .NET 9

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

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

Expand Down
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),

For more details, please refer to `PackageReleaseNotes.txt` on a per assembly basis in the `.nuget` folder.

## [1.3.3] - 2026-08-15

This is a patch release focused on dependency upgrades and test infrastructure consolidation to improve compatibility and reduce maintenance overhead.

### Changed

- Upgraded Microsoft.NET.Test.Sdk from 18.8.1 to 18.9.0,
- Upgraded Codebelt.Bootstrapper.Console from 5.1.2 to 5.2.0,
- Upgraded Codebelt.Extensions.Xunit.App from 11.1.2 to 11.2.1,
- Upgraded Cuemon.Core from 10.5.5 to 10.7.0,
- Consolidated test environment Docker images into a unified multi-version runner image (8-9-10-11) to streamline test configuration and reduce setup complexity.

## [1.3.2] - 2026-07-22

This is a patch release focused on dependency updates, build configuration corrections, and infrastructure refinements.
Expand Down Expand Up @@ -141,7 +153,8 @@ This is the initial stable release of the `Codebelt.Extensions.BenchmarkDotNet`
- ADDED `BenchmarkProgram` class in the Codebelt.Extensions.BenchmarkDotNet.Console namespace that provides the main entry point for hosting and running benchmarks using BenchmarkDotNet,
- ADDED `BenchmarkWorker` class in the Codebelt.Extensions.BenchmarkDotNet.Console namespace that is responsible for executing benchmarks within the console host.

[Unreleased]: https://github.com/codebeltnet/benchmarkdotnet/compare/v1.3.2...HEAD
[Unreleased]: https://github.com/codebeltnet/benchmarkdotnet/compare/v1.3.3...HEAD
[1.3.3]: https://github.com/codebeltnet/benchmarkdotnet/compare/v1.3.2...v1.3.3
[1.3.2]: https://github.com/codebeltnet/benchmarkdotnet/compare/v1.3.1...v1.3.2
[1.3.1]: https://github.com/codebeltnet/benchmarkdotnet/compare/v1.3.0...v1.3.1
[1.3.0]: https://github.com/codebeltnet/benchmarkdotnet/compare/v1.2.7...v1.3.0
Expand Down
8 changes: 4 additions & 4 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<ItemGroup>
<PackageVersion Include="BenchmarkDotNet" Version="0.15.8" />
<PackageVersion Include="BenchmarkDotNet.Diagnostics.Windows" Version="0.15.8" />
<PackageVersion Include="Codebelt.Bootstrapper.Console" Version="5.1.2" />
<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.Bootstrapper.Console" Version="5.2.0" />
<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