backstop 1.3.0.352 → 1.3.0.354
raw patch · 5 files changed
+24/−8 lines, 5 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +8/−0
- backstop.cabal +5/−2
- src/Main.hs +3/−3
- src/Manual.hs +1/−1
- tests/RunTests.hs +7/−2
CHANGELOG.md view
@@ -11,3 +11,11 @@ ## 1.3.0.352 -- 2019-07-14 * Small documentation corrections.++## 1.3.0.353 -- 2019-07-25++* Now works with stack.++## 1.3.0.354 -- 2019-11-04++* Added the "tested-with" entry to the cabal file.
backstop.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: backstop-version: 1.3.0.352+version: 1.3.0.354 license: GPL-3.0-only license-file: LICENSE copyright: All rights reserved (c)1999-2019.@@ -21,11 +21,14 @@ extra-source-files: CHANGELOG.md README.md+tested-with:+ GHC==8.4.1,+ GHC==8.6.5 source-repository head type: git location: https://github.com/mdgabriel/backstop.git- tag: 1.3.0.351+ tag: 1.3.0.354 library exposed-modules:
src/Main.hs view
@@ -176,7 +176,7 @@ > > USAGE NOTES > Evolved with ghc 6.10, 6.12, 7.0, 7.4, 7.10, 8.0.2, and 8.4.1.-> Tested with 8.4.1.+> Tested with 8.6.5. > > EXAMPLES > To display a summary of usage, use@@ -353,8 +353,8 @@ config = Config { argOrder = RequireOrder,- -- Update revision number: toggle case- release = "1.3.0.352",+ -- Update revision number: TOGGLE CASE+ release = "1.3.0.354", flagsOps = " {-{h|l|m|v|y}|[-nprt] [-a|-d] trgdir srcdir [srcdir...]}" } where
src/Manual.hs view
@@ -189,7 +189,7 @@ "\n"++ "USAGE NOTES\n"++ " Evolved with ghc 6.10, 6.12, 7.0, 7.4, 7.10, 8.0.2, and 8.4.1.\n"++- " Tested with 8.4.1.\n"+++ " Tested with 8.6.5.\n"++ "\n"++ "EXAMPLES\n"++ " To display a summary of usage, use\n"++
tests/RunTests.hs view
@@ -623,8 +623,13 @@ runTests :: IO ExitCode runTests =- runCommand "./tests/run-tests.sh dist*/build/*/ghc-*/backstop-*/x/backstop/build/backstop/backstop"- >>= waitForProcess+ let command = "./tests/run-tests.sh"+ backstops = "dist*/build/*/ghc-*/backstop-*/x/backstop/build/backstop/backstop"+ ++ " "+ ++ "dist/build/backstop/backstop"+ ++ " "+ ++ ".stack-work/install/*/*/8.6.5/bin/backstop"+ in runCommand (command ++ " " ++ backstops) >>= waitForProcess -- Section Last ---------------------------------------------------------------------