diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5457ffd..e909aac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,8 +20,9 @@ jobs: ghc: - "8.10.7" - "9.0.2" - - "9.2.5" + - "9.2.7" - "9.4.4" + - "9.6.1" exclude: - os: macOS-latest @@ -29,14 +30,18 @@ jobs: - os: macOS-latest ghc: 9.0.2 - os: macOS-latest - ghc: 9.2.5 + ghc: 9.2.7 + - os: macOS-latest + ghc: 9.4.4 - os: windows-latest ghc: 8.10.7 - os: windows-latest ghc: 9.0.2 - os: windows-latest - ghc: 9.2.5 + ghc: 9.2.7 + - os: windows-latest + ghc: 9.4.4 steps: - uses: actions/checkout@v3 @@ -84,7 +89,7 @@ jobs: strategy: matrix: stack: ["2.9.3"] - ghc: ["9.2.5"] + ghc: ["9.2.7"] steps: - uses: actions/checkout@v3 diff --git a/CHANGELOG.md b/CHANGELOG.md index 4706fde..274e970 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,10 @@ Implement Yes/No reading functions: * Add `YesNo` type (`Yes` | `No`) (by [@martinhelmer]) + +* [#116](https://github.com/chshersh/iris/issues/116): + Supports GHC 9.6.1 + (by [@celsobonutti]) ## [0.1.0.0] — 2023-03-02 🎂 @@ -131,6 +135,7 @@ Initial release prepared by [@chshersh]. [@aleeusgr]: https://github.com/aleeusgr [@blackheaven]: https://github.com/blackheaven +[@celsobonutti]: https://github.com/celsobonutti [@charrsky]: https://github.com/charrsky [@chshersh]: https://github.com/chshersh [@CThuleHansen]: https://github.com/CThuleHansen diff --git a/examples/simple-grep/simple-grep.cabal b/examples/simple-grep/simple-grep.cabal index db573d3..ac6bf35 100644 --- a/examples/simple-grep/simple-grep.cabal +++ b/examples/simple-grep/simple-grep.cabal @@ -4,7 +4,7 @@ version: 0.0.0.0 build-type: Simple common common-options - build-depends: base >= 4.14 && < 4.18 + build-depends: base >= 4.14 && < 5 ghc-options: -Wall -Wcompat diff --git a/iris.cabal b/iris.cabal index 24c34db..8a5ddbb 100644 --- a/iris.cabal +++ b/iris.cabal @@ -17,8 +17,9 @@ build-type: Simple extra-doc-files: README.md CHANGELOG.md tested-with: + GHC == 9.6.1 GHC == 9.4.4 - GHC == 9.2.5 + GHC == 9.2.7 GHC == 9.0.2 GHC == 8.10.7 @@ -27,7 +28,7 @@ source-repository head location: https://github.com/chshersh/iris.git common common-options - build-depends: base >= 4.14 && < 4.18 + build-depends: base >= 4.14 && < 5 ghc-options: -Wall -Wcompat