gitHUD 1.3.2 → 1.3.3
raw patch · 2 files changed
+3/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- gitHUD.cabal +1/−1
- src/GitHUD/Git/Command.hs +2/−2
gitHUD.cabal view
@@ -1,5 +1,5 @@ name: gitHUD-version: 1.3.2+version: 1.3.3 synopsis: More efficient replacement to the great git-radar description: Please see README.md homepage: http://github.com/gbataille/gitHUD#readme
src/GitHUD/Git/Command.hs view
@@ -53,7 +53,7 @@ -> MVar String -- ^ The output mvar -> IO () gitCmdRevToPush fromCommit toCommit out = do- revToPush <- readProcessWithIgnoreExitCode "git" ["rev-list", "--right-only", "--count", mergeBaseDiffFromTo fromCommit toCommit] ""+ revToPush <- readProcessWithIgnoreExitCode "git" ["rev-list", "--no-merges", "--right-only", "--count", mergeBaseDiffFromTo fromCommit toCommit] "" putMVar out revToPush gitCmdRevToPull :: String -- ^ from revision@@ -61,7 +61,7 @@ -> MVar String -- ^ The output mvar -> IO () gitCmdRevToPull fromCommit toCommit out = do- revToPull <- readProcessWithIgnoreExitCode "git" ["rev-list", "--left-only", "--count", mergeBaseDiffFromTo fromCommit toCommit] ""+ revToPull <- readProcessWithIgnoreExitCode "git" ["rev-list", "--no-merges", "--left-only", "--count", mergeBaseDiffFromTo fromCommit toCommit] "" putMVar out revToPull gitCmdStashCount :: MVar String -- ^ The output mvar