Skip to content

Commit

Permalink
Merge branch 'release/1.1.0'
Browse files Browse the repository at this point in the history
* release/1.1.0:
  (#65) Remove information about icon
  (maint): Bump CakeContrib.Guidelines from 0.5.0 to 1.1.1 in /Source
  (maint): Bump Microsoft.NET.Test.Sdk from 15.6.0 to 16.10.0 in /Source
  Bump Cake.Recipe from 2.2.0 to 2.2.1
  (GH-61) Add cake-addin tag to NuGet package
  (maint): Bump Cake.Addin.Analyzer from 0.1.1 to 0.1.3 in /Source
  (maint): Bump xunit from 2.3.1 to 2.4.1 in /Source
  (maint): Bump coverlet.msbuild from 3.0.2 to 3.0.3 in /Source
  (build) Pin to specific OS versions
  (maint): Bump xunit.runner.visualstudio from 2.3.1 to 2.4.3 in /Source
  (build) Update configuration to match folder name
  • Loading branch information
gep13 committed Jun 7, 2021
2 parents 546fe1e + 2a5dc40 commit 0cfa9b5
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2
updates:
- package-ecosystem: "nuget"
directory: "/"
directory: "/Source"
schedule:
interval: "daily"
commit-message:
Expand All @@ -15,4 +15,4 @@ updates:
interval: "daily"
commit-message:
prefix: "(maint)"
target-branch: "develop"
target-branch: "develop"
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
os: [ windows-2019, ubuntu-18.04, macos-10.15 ]

env:
AZURE_PASSWORD: ${{ secrets.AZURE_PASSWORD }}
Expand Down
8 changes: 4 additions & 4 deletions Source/Cake.Twitter.Tests/Cake.Twitter.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@
<PackageReference Include="Cake.Testing" Version="1.0.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.msbuild" Version="3.0.2">
<PackageReference Include="coverlet.msbuild" Version="3.0.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.6.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.10.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
</ItemGroup>

<ItemGroup>
Expand Down
8 changes: 3 additions & 5 deletions Source/Cake.Twitter/Cake.Twitter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,9 @@
<Authors>Gary Ewan Park</Authors>
<Copyright>Copyright © $(FullYear) — Cake Contributions</Copyright>
<Description>Cake AddIn that extends Cake with ability to send messages to Twitter.</Description>
<PackageIcon>icon.png</PackageIcon>
<PackageIconUrl>https://cdn.jsdelivr.net/gh/cake-contrib/graphics/png/cake-contrib-medium.png</PackageIconUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/cake-contrib/Cake.Twitter/</PackageProjectUrl>
<PackageTags>Cake;Script;Build;Twitter</PackageTags>
<PackageTags>Cake;Script;Build;Twitter;cake-addin</PackageTags>
<RepositoryUrl>https://github.com/cake-contrib/Cake.Twitter.git</RepositoryUrl>
<PackageReleaseNotes>https://github.com/cake-contrib/Cake.Twitter/releases/tag/$(Version)</PackageReleaseNotes>
</PropertyGroup>
Expand All @@ -36,11 +34,11 @@

<ItemGroup>
<PackageReference Include="Cake.Core" Version="1.0.0" PrivateAssets="All" />
<PackageReference Include="Cake.Addin.Analyzer" Version="0.1.1">
<PackageReference Include="Cake.Addin.Analyzer" Version="0.1.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="CakeContrib.Guidelines" Version="0.5.0">
<PackageReference Include="CakeContrib.Guidelines" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
Binary file removed Source/Cake.Twitter/icon.png
Binary file not shown.
2 changes: 1 addition & 1 deletion recipe.cake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#load nuget:?package=Cake.Recipe&version=2.2.0
#load nuget:?package=Cake.Recipe&version=2.2.1

Environment.SetVariableNames();

Expand Down

0 comments on commit 0cfa9b5

Please sign in to comment.