Skip to content

Commit

Permalink
Add support for GHC 9.11.20240522
Browse files Browse the repository at this point in the history
  • Loading branch information
christiaanb committed May 22, 2024
1 parent 84f500a commit 5771f47
Show file tree
Hide file tree
Showing 3 changed files with 748 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog for the [`ghc-typelits-natnormalise`](http://hackage.haskell.org/package/ghc-typelits-natnormalise) package

## 0.7.11
* Support for GHC 9.11.20240522

## 0.7.10 *May 22nd 2024*
* Support for GHC 9.10.1

Expand Down
7 changes: 5 additions & 2 deletions ghc-typelits-natnormalise.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: ghc-typelits-natnormalise
version: 0.7.10
version: 0.7.11
synopsis: GHC typechecker plugin for types of kind GHC.TypeLits.Nat
description:
A type checker plugin for GHC that can solve /equalities/ and /inequalities/
Expand Down Expand Up @@ -78,9 +78,12 @@ library
hs-source-dirs: src
if impl(ghc >= 8.0) && impl(ghc < 9.4)
hs-source-dirs: src-pre-ghc-9.4
if impl(ghc >= 9.4) && impl(ghc < 9.12)
if impl(ghc >= 9.4) && impl(ghc < 9.11)
hs-source-dirs: src-ghc-9.4
build-depends: template-haskell >=2.17 && <2.23
if impl(ghc >= 9.11) && impl(ghc < 9.13)
hs-source-dirs: src-ghc-9.12
build-depends: template-haskell >=2.17 && <2.23
default-language: Haskell2010
other-extensions: CPP
LambdaCase
Expand Down
Loading

0 comments on commit 5771f47

Please sign in to comment.