From 1037749ffcaae646235cf490867da1a94b7fd865 Mon Sep 17 00:00:00 2001 From: "D. Domig" Date: Sat, 15 Jun 2019 08:15:55 +0200 Subject: [PATCH 1/2] Update LibGit2Sharp to 0.26.0 --- build.cake | 4 +++- src/Cake.Git/Cake.Git.csproj | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/build.cake b/build.cake index 62e3e89..33434ad 100644 --- a/build.cake +++ b/build.cake @@ -203,13 +203,15 @@ Task("Create-NuGet-Package") var cakeGit = GetFiles(artifactsRoot.FullPath + "/**/Cake.Git.dll"); var libGit = GetFiles(artifactsRoot.FullPath + "/**/LibGit2Sharp*"); var coreNative = GetFiles(artifactsRoot.FullPath + "/netstandard2.0/runtimes/**/*") - - GetFiles(artifactsRoot.FullPath + "/netstandard2.0/runtimes/win7-x86/**/*"); + - GetFiles(artifactsRoot.FullPath + "/netstandard2.0/runtimes/win-x86/**/*"); + nuGetPackSettings.Files = (native + libGit + cakeGit) .Where(file=>!file.FullPath.Contains("Cake.Core.") && !file.FullPath.Contains("/runtimes/")) .Select(file=>file.FullPath.Substring(artifactsRoot.FullPath.Length+1)) .Select(file=>new NuSpecContent {Source = file, Target = "lib/" + file}) .Union( coreNative + .Where(file=>file.FullPath.Contains("/linux-x64/") || file.FullPath.Contains("/win-x64/") || file.FullPath.Contains("/osx/")) .Select(file=>new NuSpecContent { Source = file.FullPath.Substring(artifactsRoot.FullPath.Length+1), Target = "lib/netstandard2.0/" + file.GetFilename() diff --git a/src/Cake.Git/Cake.Git.csproj b/src/Cake.Git/Cake.Git.csproj index c65528c..0b9572b 100644 --- a/src/Cake.Git/Cake.Git.csproj +++ b/src/Cake.Git/Cake.Git.csproj @@ -18,8 +18,8 @@ - - + + From dc9ff790c54352f0ad7d9ad8181f8443f90689dc Mon Sep 17 00:00:00 2001 From: Mattias Karlsson Date: Fri, 5 Jul 2019 11:51:42 +0200 Subject: [PATCH 2/2] Bumped version to 0.21.0 --- ReleaseNotes.md | 4 ++++ src/SolutionInfo.cs | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ReleaseNotes.md b/ReleaseNotes.md index cc62bc5..0786d8b 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,3 +1,7 @@ +### New in 0.21.0 (Released 2019/07/05) + +* Update to LibGit2Sharp 0.26.0 + ### New in 0.20.0 (Released 2019/06/22) * Bumped Cake.Core to 0.33.0 diff --git a/src/SolutionInfo.cs b/src/SolutionInfo.cs index d3d9695..79cc7ca 100644 --- a/src/SolutionInfo.cs +++ b/src/SolutionInfo.cs @@ -10,9 +10,9 @@ [assembly: AssemblyDescription("Cake Git AddIn")] [assembly: AssemblyCompany("WCOM AB")] [assembly: AssemblyProduct("Cake.Git")] -[assembly: AssemblyVersion("0.20.0")] -[assembly: AssemblyFileVersion("0.20.0")] -[assembly: AssemblyInformationalVersion("0.20.0")] +[assembly: AssemblyVersion("0.21.0")] +[assembly: AssemblyFileVersion("0.21.0")] +[assembly: AssemblyInformationalVersion("0.21.0")] [assembly: AssemblyCopyright("Copyright © WCOM AB 2019")] [assembly: CLSCompliant(true)]