packages feed

githud 3.0.0 → 3.0.1

raw patch · 3 files changed

+4/−4 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

githud.cabal view
@@ -1,6 +1,6 @@ cabal-version:       2.2 name:                githud-version:             3.0.0+version:             3.0.1 synopsis:            More efficient replacement to the great git-radar description:         Please see README.md (used to be gitHUD) homepage:            http://github.com/gbataille/gitHUD#readme
src/GitHUD/Config/Types.hs view
@@ -162,7 +162,7 @@   , confStashSuffixColor = Green   , confStashSuffixIntensity = Vivid -  , confRunFetcherDaemon = True+  , confRunFetcherDaemon = False   , confGithuddSleepSeconds = 30   , confGithuddPidFilePath = "/usr/local/var/run/githudd.pid"   , confGithuddSocketFilePath = "/usr/local/var/run/githudd.socket"
test/Test/GitHUD/Config/Parse.hs view
@@ -564,6 +564,6 @@     , testCase "Cuts to the integer part found" $         intConfigToInt "12.5" @?= 12 -    , testCase "any bad value defaults to 5" $-        intConfigToInt "foo" @?= 5+    , testCase "any bad value defaults to 30" $+        intConfigToInt "foo" @?= 30   ]