Skip to content
This repository was archived by the owner on Apr 6, 2024. It is now read-only.

Commit cfa4d72

Browse files
committed
Merge branch 'release/4.0.0'
2 parents 3440996 + 135e116 commit cfa4d72

File tree

18 files changed

+106
-104
lines changed

18 files changed

+106
-104
lines changed

.appveyor.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ install:
1111
- ps: mkdir $env:DOTNET_INSTALL_DIR -Force | Out-Null
1212
- ps: Invoke-WebRequest -Uri "https://dotnet.microsoft.com/download/dotnet/scripts/v1/dotnet-install.ps1" -OutFile "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1"
1313
- ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 5.0.408 -InstallDir $env:DOTNET_INSTALL_DIR'
14-
- ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 6.0.405 -InstallDir $env:DOTNET_INSTALL_DIR'
15-
- ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 7.0.102 -InstallDir $env:DOTNET_INSTALL_DIR'
14+
- ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 6.0.417 -InstallDir $env:DOTNET_INSTALL_DIR'
15+
- ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 7.0.404 -InstallDir $env:DOTNET_INSTALL_DIR'
16+
- ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 8.0.100 -InstallDir $env:DOTNET_INSTALL_DIR'
1617
- ps: $env:Path = "$env:DOTNET_INSTALL_DIR;$env:Path"
1718
- ps: dotnet --info
1819

.github/dependabot.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/renovate.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"github>cake-contrib/renovate-presets:cake-issues"
5+
]
6+
}

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"dotnet.defaultSolution": "src\\Cake.Issues.GitRepository.sln"
3+
}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ and for general information about the Cake build automation system see the [Cake
3232

3333
- [Documentation](https://cakeissues.net)
3434

35-
## Chat Room
35+
## Discussion
3636

37-
Come join in the conversation about this addin in our Gitter Chat Room.
37+
For questions and to discuss ideas & feature requests, use the [GitHub discussions on the Cake GitHub repository](https://github.com/cake-build/cake/discussions), under the [Extension Q&A](https://github.com/cake-build/cake/discussions/categories/extension-q-a) category.
3838

39-
[![Join the chat at https://gitter.im/cake-contrib/Lobby](https://badges.gitter.im/cake-contrib/Lobby.svg)](https://gitter.im/cake-contrib/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
39+
[![Join in the discussion on the Cake repository](https://img.shields.io/badge/GitHub-Discussions-green?logo=github)](https://github.com/cake-build/cake/discussions)
4040

4141
## Contributing
4242

azure-pipelines.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ jobs:
2828
inputs:
2929
version: '7.x'
3030
displayName: 'Install .NET 7'
31+
- task: UseDotNet@2
32+
inputs:
33+
version: '8.x'
34+
displayName: 'Install .NET 8'
3135
- powershell: ./build.ps1
3236
displayName: 'Build'
3337
- publish: $(Build.SourcesDirectory)/BuildArtifacts/Packages/NuGet

global.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"sdk": {
3+
"allowPrerelease": true,
4+
"version": "8.0.100",
5+
"rollForward": "latestFeature"
6+
}
7+
}

nuspec/nuget/Cake.Issues.GitRepository.nuspec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ See the Project Site for an overview of the whole ecosystem of addins for workin
2424
<repository type="git" url="https://github.com/cake-contrib/Cake.Issues.GitRepository.git"/>
2525
<copyright>Copyright © Pascal Berger</copyright>
2626
<tags>cake cake-addin cake-issues cake-issueprovider code-analysis linting git</tags>
27-
<releaseNotes>https://github.com/cake-contrib/Cake.Issues.GitRepository/releases/tag/3.0.0</releaseNotes>
27+
<releaseNotes>https://github.com/cake-contrib/Cake.Issues.GitRepository/releases/tag/4.0.0</releaseNotes>
2828
</metadata>
2929
<files>
3030
<file src="..\..\..\..\nuspec\nuget\icon.png" target="" />
@@ -34,5 +34,8 @@ See the Project Site for an overview of the whole ecosystem of addins for workin
3434
<file src="net7.0/Cake.Issues.GitRepository.dll" target="lib\net7.0" />
3535
<file src="net7.0/Cake.Issues.GitRepository.pdb" target="lib\net7.0" />
3636
<file src="net7.0/Cake.Issues.GitRepository.xml" target="lib\net7.0" />
37+
<file src="net8.0/Cake.Issues.GitRepository.dll" target="lib\net8.0" />
38+
<file src="net8.0/Cake.Issues.GitRepository.pdb" target="lib\net8.0" />
39+
<file src="net8.0/Cake.Issues.GitRepository.xml" target="lib\net8.0" />
3740
</files>
3841
</package>

recipe.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#load nuget:?package=Cake.Recipe&version=3.0.0
1+
#load nuget:?package=Cake.Recipe&version=3.1.1
22

33
//*************************************************************************************************
44
// Settings

src/Cake.Issues.GitRepository.Tests/Cake.Issues.GitRepository.Tests.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,28 +23,28 @@
2323
</ItemGroup>
2424
<ItemGroup>
2525
<PackageReference Include="Cake.Issues">
26-
<Version>3.0.0</Version>
26+
<Version>4.0.0</Version>
2727
</PackageReference>
2828
<PackageReference Include="Cake.Issues.Testing">
29-
<Version>3.0.0</Version>
29+
<Version>4.0.0</Version>
3030
</PackageReference>
3131
<PackageReference Include="Cake.Testing">
32-
<Version>3.0.0</Version>
32+
<Version>4.0.0</Version>
3333
</PackageReference>
3434
<PackageReference Include="Shouldly">
35-
<Version>4.1.0</Version>
35+
<Version>4.2.1</Version>
3636
</PackageReference>
3737
<PackageReference Include="StyleCop.Analyzers">
3838
<Version>1.1.118</Version>
3939
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
4040
<PrivateAssets>all</PrivateAssets>
4141
</PackageReference>
42-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.2" />
42+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
4343
<PackageReference Include="xunit">
44-
<Version>2.4.2</Version>
44+
<Version>2.6.3</Version>
4545
</PackageReference>
4646
<PackageReference Include="xunit.runner.visualstudio">
47-
<Version>2.4.5</Version>
47+
<Version>2.5.5</Version>
4848
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
4949
<PrivateAssets>all</PrivateAssets>
5050
</PackageReference>

0 commit comments

Comments
 (0)