Skip to content

Commit

Permalink
Support GHC 9.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Kleidukos committed Dec 6, 2024
1 parent 44eed3d commit 2f6c512
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
8 changes: 4 additions & 4 deletions print-api.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 2f6c512

Please sign in to comment.