diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-11-16 18:36:27 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2019-11-16 20:40:37 -0500 |
commit | d84d5a572b7ddaf471eccb39da620807ef3591da (patch) | |
tree | 5d327caa1d483a26c691da151dd0ec0901d23124 | |
parent | 141eb4c8c9e81f7a32da9b28dee528ad51f76b93 (diff) |
Drop support for base 4.13
-rw-r--r-- | haddock-api/src/Haddock/InterfaceFile.hs | 2 | ||||
-rw-r--r-- | haddock.cabal | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/haddock-api/src/Haddock/InterfaceFile.hs b/haddock-api/src/Haddock/InterfaceFile.hs index 36729d70..9e199a3d 100644 --- a/haddock-api/src/Haddock/InterfaceFile.hs +++ b/haddock-api/src/Haddock/InterfaceFile.hs @@ -82,7 +82,7 @@ binaryInterfaceMagic = 0xD0Cface -- (2) set `binaryInterfaceVersionCompatibility` to [binaryInterfaceVersion] -- binaryInterfaceVersion :: Word16 -#if (__GLASGOW_HASKELL__ >= 809) && (__GLASGOW_HASKELL__ < 811) +#if (__GLASGOW_HASKELL__ >= 811) && (__GLASGOW_HASKELL__ < 813) binaryInterfaceVersion = 34 binaryInterfaceVersionCompatibility :: [Word16] diff --git a/haddock.cabal b/haddock.cabal index 62bae206..0d3e9d9f 100644 --- a/haddock.cabal +++ b/haddock.cabal @@ -64,8 +64,7 @@ executable haddock -- haddock typically only supports a single GHC major version build-depends: - -- FIXME: drop 4.12.0.0 once GHC HEAD updates to 4.13.0.0 - base ^>= 4.13.0.0 || ^>= 4.14.0.0 + base ^>= 4.14.0.0 if flag(in-ghc-tree) hs-source-dirs: haddock-api/src, haddock-library/src |