Skip to content

Commit 82d621c

Browse files
author
Edward Thomson
authored
Merge pull request #1402 from libgit2/ethomson/0_23_1
Update natives to 1.0.164 (libgit2 a5cf255)
2 parents 2e3238f + 097036d commit 82d621c

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

CHANGES.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,21 @@
1010
- Windows (x86/amd64): <https://ci.appveyor.com/project/libgit2/libgit2sharp>
1111
- Linux/Mac OS X: <https://travis-ci.org/libgit2/libgit2sharp>
1212

13-
## v0.23 + 1
13+
## v0.23.1 + 1
1414

1515
### Additions
1616

1717
### Changes
1818

1919
### Fixes
2020

21+
## v0.23.1 - ([diff](https://github.com/libgit2/libgit2sharp/compare/v0.23..v0.23.1))
22+
23+
### Fixes
24+
25+
- Update to libgit2 0.25.1 which includes security fixes for smart
26+
protocol parsing and TLS certificate validity check callbacks.
27+
2128
## v0.23 - ([diff](https://github.com/libgit2/libgit2sharp/compare/v0.22..v0.23))
2229

2330
### Additions

LibGit2Sharp/LibGit2Sharp.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="..\packages\LibGit2Sharp.NativeBinaries.1.0.163\build\LibGit2Sharp.NativeBinaries.props" Condition="Exists('..\packages\LibGit2Sharp.NativeBinaries.1.0.163\build\LibGit2Sharp.NativeBinaries.props')" />
3+
<Import Project="..\packages\LibGit2Sharp.NativeBinaries.1.0.164\build\LibGit2Sharp.NativeBinaries.props" Condition="Exists('..\packages\LibGit2Sharp.NativeBinaries.1.0.164\build\LibGit2Sharp.NativeBinaries.props')" />
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
66
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -392,6 +392,6 @@
392392
<PropertyGroup>
393393
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
394394
</PropertyGroup>
395-
<Error Condition="!Exists('..\packages\LibGit2Sharp.NativeBinaries.1.0.163\build\LibGit2Sharp.NativeBinaries.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\LibGit2Sharp.NativeBinaries.1.0.163\build\LibGit2Sharp.NativeBinaries.props'))" />
395+
<Error Condition="!Exists('..\packages\LibGit2Sharp.NativeBinaries.1.0.164\build\LibGit2Sharp.NativeBinaries.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\LibGit2Sharp.NativeBinaries.1.0.164\build\LibGit2Sharp.NativeBinaries.props'))" />
396396
</Target>
397397
</Project>

LibGit2Sharp/Properties/AssemblyInfo.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@
4242
// by using the '*' as shown below:
4343
// [assembly: AssemblyVersion("1.0.*")]
4444

45-
[assembly: AssemblyVersion("0.23.0")]
46-
[assembly: AssemblyFileVersion("0.23.0")]
47-
[assembly: AssemblyInformationalVersion("0.23.0-dev00000000000000")]
45+
[assembly: AssemblyVersion("0.23.1")]
46+
[assembly: AssemblyFileVersion("0.23.1")]
47+
[assembly: AssemblyInformationalVersion("0.23.1-dev00000000000000")]

LibGit2Sharp/packages.config

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="LibGit2Sharp.NativeBinaries" version="1.0.163" targetFramework="net40" allowedVersions="[1.0.163]" />
4-
</packages>
3+
<package id="LibGit2Sharp.NativeBinaries" version="1.0.164" targetFramework="net40" allowedVersions="[1.0.164]" />
4+
</packages>

0 commit comments

Comments
 (0)