diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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.
diff --git a/backstop.cabal b/backstop.cabal
--- a/backstop.cabal
+++ b/backstop.cabal
@@ -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:
diff --git a/src/Main.hs b/src/Main.hs
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -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
diff --git a/src/Manual.hs b/src/Manual.hs
--- a/src/Manual.hs
+++ b/src/Manual.hs
@@ -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"++
diff --git a/tests/RunTests.hs b/tests/RunTests.hs
--- a/tests/RunTests.hs
+++ b/tests/RunTests.hs
@@ -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 ---------------------------------------------------------------------
 
