diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -62,6 +62,9 @@
 
 * The 0.2.0.4 release suppresses a GHC 7.10 warning for `Control.Monad.Safe`.
 
+* Subsequent releases are maintenance for new GHC, Cabal and
+  Stackage stuff.
+
 ## License
 
 This program is licensed under the "3-clause ('new') BSD
diff --git a/parseargs.cabal b/parseargs.cabal
--- a/parseargs.cabal
+++ b/parseargs.cabal
@@ -4,9 +4,9 @@
 
 Name: parseargs
 Build-Type: Simple
-Description: Parse command-line arguments
+Description: Full-featured command-line argument parsing library.
 -- Don't forget to bump the source-repository this below
-Version: 0.2.0.8
+Version: 0.2.0.9
 Cabal-Version: >= 1.8
 License: BSD3
 License-File: COPYING
@@ -15,9 +15,9 @@
 Maintainer: Bart Massey <bart@cs.pdx.edu>
 Homepage: http://github.com/BartMassey/parseargs
 Category: Console
-Synopsis: Full-featured command-line argument parsing library.
+Synopsis: Parse command-line arguments
 Extra-Source-Files: README.md test-parseargs.sh tests/*.in tests/*.out
-Tested-With: GHC >= 6 && < 8.1
+Tested-With: GHC >= 6 && <= 8.4.4
 
 Library
   Build-Depends:   base < 5, containers < 1
@@ -34,6 +34,7 @@
   Type:            exitcode-stdio-1.0
   Main-Is:         test-parseargs.hs
   build-depends:   base < 5, process < 2
+  build-tool-depends: parseargs:parseargs-example
 
 Source-repository head
   Type:     git
@@ -42,4 +43,4 @@
 Source-repository this
   Type:     git
   Location: git://github.com/BartMassey/parseargs.git
-  Tag:      v0.2.0.8
+  Tag:      v0.2.0.9
diff --git a/test-parseargs.sh b/test-parseargs.sh
--- a/test-parseargs.sh
+++ b/test-parseargs.sh
@@ -1,7 +1,7 @@
 #!/bin/sh
 # Copyright © 2016 Bart Massey
 # Run simple parseargs tests
-PA=dist/build/parseargs-example/parseargs-example
+PA=parseargs-example
 TMP=/tmp/test-parseargs-$$
 trap "rm -f $TMP" 0 1 2 3 15
 for f in tests/*.in
