hlibgit2 0.17.0.7 → 0.17.0.8
raw patch · 3 files changed
+6/−3 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Bindings/Libgit2.hs +2/−0
- hlibgit2.cabal +3/−2
- libgit2/src/transport.c +1/−1
Bindings/Libgit2.hs view
@@ -19,6 +19,7 @@ module Bindings.Libgit2.Tree, module Bindings.Libgit2.Odb, module Bindings.Libgit2.Common,+ module Bindings.Libgit2.Remote, module Bindings.Libgit2.Object) where import Bindings.Libgit2.Repository import Bindings.Libgit2.Config@@ -39,4 +40,5 @@ import Bindings.Libgit2.Tree import Bindings.Libgit2.Odb import Bindings.Libgit2.Common+import Bindings.Libgit2.Remote import Bindings.Libgit2.Object
hlibgit2.cabal view
@@ -1,5 +1,5 @@ Name: hlibgit2-Version: 0.17.0.7+Version: 0.17.0.8 Synopsis: Low-level bindings to libgit2 Description: Bindings to libgit2 v0.17.0. License-file: LICENSE@@ -163,7 +163,8 @@ libgit2/src libgit2/deps/http-parser - cc-options: -DGIT_THREADS -D_FILE_OFFSET_BITS=64+ cc-options: -g -DGIT_THREADS -D_FILE_OFFSET_BITS=64+ ld-options: -g if os(windows) cc-options: -DGIT_WIN32 -DWIN32 -D_DEBUG -D_WIN32_WINNT=0x0501 c-sources:
libgit2/src/transport.c view
@@ -37,7 +37,7 @@ } /* still here? Check to see if the path points to a file on the local file system */- if ((git_path_exists(url) == 0) && git_path_isdir(url))+ if (git_path_exists(url) && git_path_isdir(url)) return &git_transport_local; /* It could be a SSH remote path. Check to see if there's a : */