diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2015-12-30 17:25:39 +0100 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2015-12-30 17:25:39 +0100 |
commit | 6ddd758be0e7b50bd19d33400b3c3013d60786cb (patch) | |
tree | a086523aa15682fc5d93e34a6a463a088162602a | |
parent | 80f2f9805b61e8cea291bae8ce22db626dc11f21 (diff) |
tweak version bounds for GHC-8.1
-rw-r--r-- | haddock-api/src/Haddock/InterfaceFile.hs | 2 | ||||
-rw-r--r-- | haddock.cabal | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/haddock-api/src/Haddock/InterfaceFile.hs b/haddock-api/src/Haddock/InterfaceFile.hs index 5d15fb33..1bc4ddb3 100644 --- a/haddock-api/src/Haddock/InterfaceFile.hs +++ b/haddock-api/src/Haddock/InterfaceFile.hs @@ -81,7 +81,7 @@ binaryInterfaceMagic = 0xD0Cface -- (2) set `binaryInterfaceVersionCompatibility` to [binaryInterfaceVersion] -- binaryInterfaceVersion :: Word16 -#if (__GLASGOW_HASKELL__ >= 711) && (__GLASGOW_HASKELL__ < 801) +#if (__GLASGOW_HASKELL__ >= 801) && (__GLASGOW_HASKELL__ < 803) binaryInterfaceVersion = 27 binaryInterfaceVersionCompatibility :: [Word16] diff --git a/haddock.cabal b/haddock.cabal index 007d71d5..f3c20f43 100644 --- a/haddock.cabal +++ b/haddock.cabal @@ -59,8 +59,8 @@ executable haddock array, xhtml >= 3000.2 && < 3000.3, Cabal >= 1.10, - ghc-boot, - ghc >= 7.11 && < 8.1, + ghc-boot == 8.1, + ghc == 8.1, bytestring, transformers |