From: Michael Orlitzky Date: Fri, 21 Apr 2017 12:13:45 +0000 (-0400) Subject: Require base >= 4.9 to pull in ghc-8.x. X-Git-Tag: 0.4.2~1 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=hath.git;a=commitdiff_plain;h=400dfd7cb509eae025a919fe5cb6d064ba0d20c9 Require base >= 4.9 to pull in ghc-8.x. A newer version of GHC is needed since we stopped deriving Typeable and began to use the new -Wfoo style for warnings. See commits fb27e58 and 3f8eddf. --- diff --git a/hath.cabal b/hath.cabal index b32d870..bb1a2e8 100644 --- a/hath.cabal +++ b/hath.cabal @@ -105,7 +105,7 @@ executable hath Octet build-depends: - base == 4.*, + base >= 4.9 && < 5, cmdargs >= 0.10, split >= 0.2, tasty >= 0.8,