diff --git a/src/GitHub.Api/Helpers/Constants.cs b/src/GitHub.Api/Helpers/Constants.cs index d89de8360..1f3fbe702 100644 --- a/src/GitHub.Api/Helpers/Constants.cs +++ b/src/GitHub.Api/Helpers/Constants.cs @@ -11,6 +11,6 @@ static class Constants public const string TraceLoggingKey = "EnableTraceLogging"; public static readonly Version MinimumGitVersion = new Version(2, 11, 0); - public static readonly Version MinimumGitLfsVersion = new Version(2, 2, 0); + public static readonly Version MinimumGitLfsVersion = new Version(2, 3, 4); } } \ No newline at end of file diff --git a/src/GitHub.Api/Installer/GitInstaller.cs b/src/GitHub.Api/Installer/GitInstaller.cs index ee18a262e..f54765298 100644 --- a/src/GitHub.Api/Installer/GitInstaller.cs +++ b/src/GitHub.Api/Installer/GitInstaller.cs @@ -6,8 +6,8 @@ namespace GitHub.Unity { class GitInstaller : IGitInstaller { - public const string WindowsGitLfsExecutableMD5 = "ef51379a06577bcdeef372d297d6cd7f"; - public const string MacGitLfsExecutableMD5 = "2b324cbfbb9196cf6a3c0a0918c434c7"; + public const string WindowsGitLfsExecutableMD5 = "177bb14d0c08f665a24f0d5516c3b080"; + public const string MacGitLfsExecutableMD5 = "f81a1a065a26a4123193e8fd96c561ad"; private const string PortableGitExpectedVersion = "f02737a78695063deace08e96d5042710d3e32db"; private const string PackageName = "PortableGit"; diff --git a/src/GitHub.Api/PlatformResources/mac/git-lfs.zip b/src/GitHub.Api/PlatformResources/mac/git-lfs.zip index 1ef246ea3..3932710f3 100644 --- a/src/GitHub.Api/PlatformResources/mac/git-lfs.zip +++ b/src/GitHub.Api/PlatformResources/mac/git-lfs.zip @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8b30e08751549f70f052eda49e0e2875ce006c98d013a17c46943b830f22e867 -size 2780647 +oid sha256:5bde4722bdbb24ec6651aa2ab559bfa6e85d31ee9e4195c81f6d6fa7548cacc6 +size 2905910 diff --git a/src/GitHub.Api/PlatformResources/windows/git-lfs.zip b/src/GitHub.Api/PlatformResources/windows/git-lfs.zip index 82a637cce..5a56712a7 100644 --- a/src/GitHub.Api/PlatformResources/windows/git-lfs.zip +++ b/src/GitHub.Api/PlatformResources/windows/git-lfs.zip @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:64b2e9186ff553f2e4afe4db38b21d27e3dde08f3347ff8ea88c667dfcefb92f -size 2807324 +oid sha256:6a4699fe6028a3727d76b218a10a7e9c6276f097b8ebd782f2e7b3418dacda07 +size 2652291 diff --git a/src/tests/IntegrationTests/GitClientTests.cs b/src/tests/IntegrationTests/GitClientTests.cs index 3f40aa892..8acc3e70a 100644 --- a/src/tests/IntegrationTests/GitClientTests.cs +++ b/src/tests/IntegrationTests/GitClientTests.cs @@ -39,7 +39,7 @@ public async Task ShouldGetGitLfsVersion() var versionResult = version.Result; if (Environment.IsWindows) { - versionResult.Should().Be(new Version(2, 3, 0)); + versionResult.Should().Be(new Version(2, 3, 4)); } else {