diff --git a/CHANGELOG.md b/CHANGELOG.md index a31049d..fa4ab5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ * Add support for module-level Haddock attribute `Visibility: Public` in order to filter modules. The command-line argument `--public-only` can be combined with `--modules-ignore-list`. + +* Support GHC 9.8.4 + ## 0.1.1.0 * Add support for user-supplied ignore lists of modules ([#18](https://github.com/Kleidukos/print-api/pull/18)) diff --git a/print-api.cabal b/print-api.cabal index f2da264..8690da2 100644 --- a/print-api.cabal +++ b/print-api.cabal @@ -15,7 +15,7 @@ extra-source-files: compat/9.6.6/GHC/Compat.hs compat/9.8.2/GHC/Compat.hs -tested-with: GHC ==9.6.6 || ==9.8.2 || ==9.10.1 +tested-with: GHC ==9.6.6 || ==9.8.4 || ==9.10.1 common extensions default-extensions: @@ -72,8 +72,8 @@ library if impl(ghc ==9.10.1) hs-source-dirs: compat/9.10.1 - if impl(ghc ==9.8.2) - hs-source-dirs: compat/9.8.2 + if impl(ghc ==9.8.4) + hs-source-dirs: compat/9.8.4 if impl(ghc ==9.6.6) hs-source-dirs: compat/9.6.6 @@ -128,7 +128,7 @@ executable print-api-9.6.6 else buildable: False -executable print-api-9.8.2 +executable print-api-9.8.4 import: print-api-common main-is: Main.hs