File tree Expand file tree Collapse file tree 4 files changed +14
-8
lines changed
tests/bunit.generators.tests Expand file tree Collapse file tree 4 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 7474 - run : |
7575 dotnet pack src/bunit/ -c Release --output ${{ env.NUGET_DIRECTORY }} -p:ContinuousIntegrationBuild=true -p:publicrelease=true
7676 dotnet pack src/bunit.template/ -c Release --output ${{ env.NUGET_DIRECTORY }} -p:ContinuousIntegrationBuild=true -p:publicrelease=true
77- dotnet pack src/bunit.generators/ -c release --output ${{ env.NUGET_DIRECTORY }} -p:ContinuousIntegrationBuild=true -p:publicrelease=true
7877 dotnet pack src/bunit.web.query/ -c release --output ${{ env.NUGET_DIRECTORY }} -p:ContinuousIntegrationBuild=true -p:publicrelease=true
7978
8079 # Publish the NuGet package as an artifact, so they can be used in the following jobs
@@ -136,7 +135,7 @@ jobs:
136135 dotnet tool restore
137136
138137 - name : 🧪 Run unit tests
139- run : dotnet test -c release --no-restore
138+ run : dotnet test -c release --no-restore -f ${{ matrix.framework }}
140139
141140 - name : 📛 Upload hang- and crash-dumps on test failure
142141 if : success() || failure()
Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ All notable changes to **bUnit** will be documented in this file. The project ad
66
77## [ Unreleased]
88
9+ ## [ 1.40.0] - 2025-06-14
10+
11+ ### Fixed
12+
13+ - Aligned Microsoft packages to their TFM version
14+
915## [ 1.39.5] - 2025-04-04
1016
1117### Fixed
@@ -1447,7 +1453,8 @@ The latest version of the library is availble on NuGet:
14471453- ** Wrong casing on keyboard event dispatch helpers.**
14481454 The helper methods for the keyboard events was not probably cased, so that has been updated. E.g. from ` Keypress(...) ` to ` KeyPress(...) ` .
14491455
1450- [ unreleased ] : https://github.com/bUnit-dev/bUnit/compare/v1.39.5...HEAD
1456+ [ unreleased ] : https://github.com/bUnit-dev/bUnit/compare/v1.40.0...HEAD
1457+ [ 1.40.0 ] : https://github.com/bUnit-dev/bUnit/compare/v1.39.5...v1.40.0
14511458[ 1.39.5 ] : https://github.com/bUnit-dev/bUnit/compare/v1.38.5...1.39.5
14521459[ 1.38.5 ] : https://github.com/bUnit-dev/bUnit/compare/v1.37.7...v1.38.5
14531460[ 1.37.7 ] : https://github.com/bUnit-dev/bUnit/compare/v1.36.0...1.37.7
Original file line number Diff line number Diff line change 1212 </ItemGroup >
1313
1414 <ItemGroup Label =" Shared" >
15- <PackageVersion Include =" Autofac" Version =" 8.1 .0" />
15+ <PackageVersion Include =" Autofac" Version =" 8.3 .0" />
1616 <PackageVersion Include =" Autofac.Extensions.DependencyInjection" Version =" 10.0.0" />
1717
18- <PackageVersion Include =" Serilog" Version =" 4.2 .0" />
18+ <PackageVersion Include =" Serilog" Version =" 4.3 .0" />
1919 <PackageVersion Include =" Serilog.Expressions" Version =" 5.0.0" />
2020 <PackageVersion Include =" AngleSharp.Diffing" Version =" 1.0.0" />
2121 <PackageVersion Include =" AngleSharp" Version =" 1.2.0" />
22- <PackageVersion Include =" AngleSharp.Css" Version =" 1.0.0-beta.144 " />
22+ <PackageVersion Include =" AngleSharp.Css" Version =" 1.0.0-beta.154 " />
2323 </ItemGroup >
2424
2525 <ItemGroup Label =" Package Versioning" >
7878 <PackageVersion Include =" Microsoft.NET.Test.Sdk" Version =" 17.13.0" />
7979 <PackageVersion Include =" Moq" Version =" 4.20.72" />
8080 <PackageVersion Include =" NSubstitute" Version =" 5.3.0" />
81- <PackageVersion Include =" NUnit3TestAdapter" Version =" 4.6 .0" />
81+ <PackageVersion Include =" NUnit3TestAdapter" Version =" 5.0 .0" />
8282 <PackageVersion Include =" RichardSzalay.MockHttp" Version =" 7.0.0" />
8383 <PackageVersion Include =" Serilog.Extensions.Logging" Version =" 9.0.0" />
8484 <PackageVersion Include =" Shouldly" Version =" 4.3.0" />
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFramework >net8.0</ TargetFramework >
4+ <TargetFrameworks >net8.0;net9.0</ TargetFrameworks >
55 <RootNamespace >Bunit</RootNamespace >
66 <AssemblyName >Bunit.Generator.Tests</AssemblyName >
77 <ImplicitUsings >true</ImplicitUsings >
You can’t perform that action at this time.
0 commit comments