Skip to content

Commit

Permalink
Update libgit2 to v1.3.0 (#17)
Browse files Browse the repository at this point in the history
* Update to libgit2 v1.3.0 and bump version

* Fix git_remote_connect not throwing on non-zero result

See libgit2/libgit2sharp#1913

Co-authored-by: Eoin Motherway <eoin.motherway@octopus.com>
  • Loading branch information
A-Ovchinnikov-mx and YuKitsune committed Sep 28, 2021
1 parent 8988bef commit 01f0e9b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions LibGit2Sharp/Core/Proxy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2164,6 +2164,7 @@ public static unsafe void git_remote_connect(RemoteHandle remote, GitDirection d
catch (Exception)
{
customHeaders.Dispose();
throw;
}
}

Expand Down
2 changes: 1 addition & 1 deletion LibGit2Sharp/LibGit2Sharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Mendix.LibGit2Sharp.NativeBinaries" Version="[1.120.0]" PrivateAssets="none" />
<PackageReference Include="Mendix.LibGit2Sharp.NativeBinaries" Version="[1.130.0]" PrivateAssets="none" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="all" />
<PackageReference Include="Nerdbank.GitVersioning" Version="3.4.220" PrivateAssets="all" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
"version": "1.120.0",
"version": "1.130.0",
"cloudBuild": {
"buildNumber": {
"enabled": true
Expand Down

0 comments on commit 01f0e9b

Please sign in to comment.