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/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 @@
-
-
+
+
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)]