File tree Expand file tree Collapse file tree 9 files changed +25
-18
lines changed Expand file tree Collapse file tree 9 files changed +25
-18
lines changed Original file line number Diff line number Diff line change 1010 "rollForward" : false
1111 },
1212 "docfx" : {
13- "version" : " 2.76 .0" ,
13+ "version" : " 2.77 .0" ,
1414 "commands" : [
1515 " docfx"
1616 ],
1717 "rollForward" : false
1818 },
1919 "dotnet-dump" : {
20- "version" : " 8 .0.547301 " ,
20+ "version" : " 9 .0.553101 " ,
2121 "commands" : [
2222 " dotnet-dump"
2323 ],
2424 "rollForward" : false
2525 }
2626 }
27- }
27+ }
Original file line number Diff line number Diff line change @@ -163,8 +163,11 @@ jobs:
163163 with :
164164 fetch-depth : 0 # Get all history to allow automatic versioning using MinVer
165165
166- - name : Setup .NET
166+ - name : ⚙️ Setup dotnet
167167 uses : actions/setup-dotnet@v4
168+ with :
169+ dotnet-version : |
170+ 9.0.x
168171
169172 - uses : actions/download-artifact@v4
170173 with :
Original file line number Diff line number Diff line change @@ -102,7 +102,8 @@ jobs:
102102 dotnet pack src/bunit/ -c Release --property:PackageOutputPath=${GITHUB_WORKSPACE}/packages -p:ContinuousIntegrationBuild=true -p:publicrelease=true
103103 dotnet pack src/bunit.core/ -c Release --property:PackageOutputPath=${GITHUB_WORKSPACE}/packages -p:ContinuousIntegrationBuild=true -p:publicrelease=true
104104 dotnet pack src/bunit.web/ -c Release --property:PackageOutputPath=${GITHUB_WORKSPACE}/packages -p:ContinuousIntegrationBuild=true -p:publicrelease=true
105- dotnet pack src/bunit.template/ -c Release --property:PackageOutputPath=${GITHUB_WORKSPACE}/packages -p:ContinuousIntegrationBuild=true -p:publicrelease=true
105+ dotnet pack src/bunit.generators/ -c Release --property:PackageOutputPath=${GITHUB_WORKSPACE}/packages -p:ContinuousIntegrationBuild=true -p:publicrelease=true
106+ dotnet pack src/bunit.web.query/ -c Release --property:PackageOutputPath=${GITHUB_WORKSPACE}/packages -p:ContinuousIntegrationBuild=true -p:publicrelease=true
106107
107108 - name : 🛠️ Upload library to NuGet.org repository
108109 run : |
Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ All notable changes to **bUnit** will be documented in this file. The project ad
66
77## [ Unreleased]
88
9+ ### Added
10+ - Extension packages (` bunit.generators ` and ` bunit.web.query ` ) are flagged as stable.
11+
912## [ 1.34.0] - 2024-11-01
1013
1114### Fixed
Original file line number Diff line number Diff line change 2323 </ItemGroup >
2424
2525 <ItemGroup Label =" Package Versioning" >
26- <PackageVersion Include =" Microsoft.SourceLink.GitHub" Version =" 8.0.0" />
2726 <PackageVersion Include =" Nerdbank.GitVersioning" Version =" 3.6.146" />
2827 </ItemGroup >
2928
Original file line number Diff line number Diff line change @@ -60,10 +60,6 @@ See the full changelog at https://github.com/bUnit-dev/bUnit/releases
6060 </ItemGroup >
6161
6262 <ItemGroup >
63- <PackageReference Include =" Microsoft.SourceLink.GitHub" >
64- <PrivateAssets >all</PrivateAssets >
65- <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
66- </PackageReference >
6763 <PackageReference Include =" Nerdbank.GitVersioning" >
6864 <PrivateAssets >all</PrivateAssets >
6965 <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
Original file line number Diff line number Diff line change 8282 "description" : " The target framework sdk for the project." ,
8383 "displayName" : " Target framework sdk" ,
8484 "datatype" : " choice" ,
85- "defaultValue" : " net7 .0" ,
85+ "defaultValue" : " net9 .0" ,
8686 "replaces" : " targetSdk" ,
8787 "choices" : [
8888 {
9999 "choice" : " net8.0" ,
100100 "description" : " .net 8.0" ,
101101 "displayName" : " .net 8.0"
102+ },
103+ {
104+ "choice" : " net9.0" ,
105+ "description" : " .net 9.0" ,
106+ "displayName" : " .net 9.0"
102107 }
103108 ]
104109 }
Original file line number Diff line number Diff line change 2525 </ItemGroup >
2626
2727 <ItemGroup Condition =" '$(testFramework_xunit)' == 'true'" >
28- <PackageReference Include =" xunit" Version =" 2.9.0 " />
29- <PackageReference Include =" xunit.runner.visualstudio" Version =" 2.5.4 " >
28+ <PackageReference Include =" xunit" Version =" 2.9.2 " />
29+ <PackageReference Include =" xunit.runner.visualstudio" Version =" 2.8.2 " >
3030 <PrivateAssets >all</PrivateAssets >
3131 <IncludeAssets >runtime; build; native; contentfiles; analyzers</IncludeAssets >
3232 </PackageReference >
3333 </ItemGroup >
3434
3535 <ItemGroup Condition =" '$(testFramework_nunit)' == 'true'" >
36- <PackageReference Include =" NUnit" Version =" 3.14.0 " />
37- <PackageReference Include =" NUnit3TestAdapter" Version =" 4.5 .0" />
36+ <PackageReference Include =" NUnit" Version =" 4.2.2 " />
37+ <PackageReference Include =" NUnit3TestAdapter" Version =" 4.6 .0" />
3838 </ItemGroup >
3939
4040 <ItemGroup Condition =" '$(testFramework_mstest)' == 'true'" >
41- <PackageReference Include =" MSTest.TestAdapter" Version =" 3.1.1 " />
42- <PackageReference Include =" MSTest.TestFramework" Version =" 3.1.1 " />
41+ <PackageReference Include =" MSTest.TestAdapter" Version =" 3.6.2 " />
42+ <PackageReference Include =" MSTest.TestFramework" Version =" 3.6.2 " />
4343 </ItemGroup >
4444
4545</Project >
Original file line number Diff line number Diff line change 11{
22 "$schema" : " https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json" ,
3- "version" : " 1.34 " ,
3+ "version" : " 1.35 " ,
44 "assemblyVersion" : {
55 "precision" : " revision"
66 },
You can’t perform that action at this time.
0 commit comments