packages feed

tasty-silver 3.1.14 → 3.1.15

raw patch · 3 files changed

+7/−2 lines, 3 filesdep ~basePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,6 +1,11 @@ Changes ======= +Version 3.1.15+--------------++* Fix missing space in git diff calls introduced in v3.1.14 (#22, thanks to croyzor)+ Version 3.1.14 -------------- 
Test/Tasty/Silver/Interactive.hs view
@@ -183,7 +183,7 @@   if hasGit then     withDiffEnv n tGold tAct       (\fGold fAct -> do-        ret <- PTL.readProcessWithExitCode "sh" ["-c", "git diff --no-index --text --exit-code" ++ fGold ++ " " ++ fAct] T.empty+        ret <- PTL.readProcessWithExitCode "sh" ["-c", "git diff --no-index --text --exit-code " ++ fGold ++ " " ++ fAct] T.empty         case ret of          (ExitSuccess, stdOut, _)   -> TIO.putStrLn stdOut          (ExitFailure 1, stdOut, _) -> TIO.putStrLn stdOut
tasty-silver.cabal view
@@ -1,5 +1,5 @@ name:                tasty-silver-version:             3.1.14+version:             3.1.15 synopsis:            A fancy test runner, including support for golden tests. description:   This package provides a fancy test runner and support for «golden testing».