8000 Merge pull request #2066 from libgit2/libgit2-171 · libgit2/libgit2sharp@1cc55f0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1cc55f0

Browse files
authored
Merge pull request #2066 from libgit2/libgit2-171
Update LibGit2Sharp.NativeBinaries to 2.0.321
2 parents 1c409f9 + 42e9826 commit 1cc55f0

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
matrix:
6363
arch: [ amd64 ]
6464
# arch: [ amd64, arm64 ]
65-
distro: [ alpine.3.13, alpine.3.14, alpine.3.15, alpine.3.16, alpine.3.17, centos.7, centos.stream.8, debian.10, debian.11, fedora.36, ubuntu.18.04, ubuntu.20.04, ubuntu.22.04 ]
65+
distro: [ alpine.3.13, alpine.3.14, alpine.3.15, alpine.3.16, alpine.3.17, centos.stream.8, debian.10, debian.11, fedora.36, ubuntu.18.04, ubuntu.20.04, ubuntu.22.04 ]
6666
sdk: [ '6.0', '7.0' ]
6767
exclude:
6868
- distro: alpine.3.13

LibGit2Sharp.Tests/GlobalSettingsFixture.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public void SetExtensions()
100100
// Enable two new extensions (it will reset the configuration and "noop" will be enabled)
101101
GlobalSettings.SetExtensions("partialclone", "newext");
102102
extensions = GlobalSettings.GetExtensions();
103-
Assert.Equal(new[] { "noop", "objectformat", "partialclone", "newext" }, extensions);
103+
Assert.Equal(new[] { "newext", "noop", "objectformat", "partialclone" }, extensions);
104104
}
105105
}
106106
}

LibGit2Sharp/Core/GitFetchOptions.cs

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ internal class GitFetchOptions
1111
public bool UpdateFetchHead = true;
1212
public TagFetchMode download_tags;
1313
public GitProxyOptions ProxyOptions;
14+
public int Depth = 0; // GIT_FETCH_DEPTH_FULL
1415
public RemoteRedirectMode FollowRedirects = RemoteRedirectMode.Initial;
1516
public GitStrArrayManaged CustomHeaders;
1617
}

LibGit2Sharp/LibGit2Sharp.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
</ItemGroup>
3434

3535
<ItemGroup>
36-
<PackageReference Include="LibGit2Sharp.NativeBinaries" Version="[2.0.320]" PrivateAssets="none" />
36+
<PackageReference Include="LibGit2Sharp.NativeBinaries" Version="[2.0.321]" PrivateAssets="none" />
3737
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="all" />
3838
<PackageReference Include="MinVer" Version="5.0.0-beta.1" PrivateAssets="all" />
3939
</ItemGroup>

0 commit comments

Comments
 (0)
0