diff --git a/hw-parser.cabal b/hw-parser.cabal
--- a/hw-parser.cabal
+++ b/hw-parser.cabal
@@ -1,7 +1,7 @@
 cabal-version:  2.2
 
 name:           hw-parser
-version:        0.1.0.1
+version:        0.1.0.2
 synopsis:       Simple parser support
 description:    Simple parser support. Please see README.md
 category:       Data, Parser
@@ -9,9 +9,10 @@
 bug-reports:    https://github.com/haskell-works/hw-parser/issues
 author:         John Ky
 maintainer:     newhoggy@gmail.com
-copyright:      2016 John Ky
+copyright:      2016-2019 John Ky
 license:        BSD-3-Clause
 license-file:   LICENSE
+tested-with:    GHC == 8.8.1, GHC == 8.6.5, GHC == 8.4.4, GHC == 8.2.2
 build-type:     Simple
 
 extra-source-files:
@@ -25,7 +26,7 @@
 
 common attoparsec           { build-depends: attoparsec           >= 0.13       && < 0.14   }
 common bytestring           { build-depends: bytestring           >= 0.10.6     && < 0.11   }
-common hedgehog             { build-depends: hedgehog             >= 0.5        && < 0.7    }
+common hedgehog             { build-depends: hedgehog             >= 1.0        && < 1.1    }
 common hspec                { build-depends: hspec                >= 2.4        && < 3      }
 common hw-hspec-hedgehog    { build-depends: hw-hspec-hedgehog    >= 0.1.0.4    && < 0.2    }
 common hw-prim              { build-depends: hw-prim              >= 0.6.2.21   && < 0.7    }
@@ -41,21 +42,21 @@
           , bytestring
           , hw-prim
           , text
-  hs-source-dirs:   src
-  exposed-modules:  HaskellWorks.Data.Parser
-  other-modules:    Paths_hw_parser
-  autogen-modules:  Paths_hw_parser
+  hs-source-dirs:       src
+  exposed-modules:      HaskellWorks.Data.Parser
+  other-modules:        Paths_hw_parser
+  autogen-modules:      Paths_hw_parser
 
 test-suite hw-parser-test
   import:   base, config
           , hedgehog
           , hspec
           , hw-hspec-hedgehog
-  type:             exitcode-stdio-1.0
-  main-is:          Spec.hs
-  build-depends:    hw-parser
-  hs-source-dirs:   test
-  ghc-options:      -threaded -rtsopts -with-rtsopts=-N
-  build-tools:      hspec-discover
-  other-modules:    Paths_hw_parser
-  autogen-modules:  Paths_hw_parser
+  type:                 exitcode-stdio-1.0
+  main-is:              Spec.hs
+  build-depends:        hw-parser
+  hs-source-dirs:       test
+  ghc-options:          -threaded -rtsopts -with-rtsopts=-N
+  build-tool-depends:   hspec-discover:hspec-discover
+  other-modules:        Paths_hw_parser
+  autogen-modules:      Paths_hw_parser
