Skip to content

Commit

Permalink
[#116] Supports GHC 9.6.1 (#121)
Browse files Browse the repository at this point in the history
* support ghc 9.6.1, bump ghc versions

* updates CHANGELOG

* bumps `base` upper bound to 5

* changelog feedback
  • Loading branch information
celsobonutti authored Apr 14, 2023
1 parent 1d8b3f2 commit 696117d
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 7 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,28 @@ jobs:
ghc:
- "8.10.7"
- "9.0.2"
- "9.2.5"
- "9.2.7"
- "9.4.4"
- "9.6.1"

exclude:
- os: macOS-latest
ghc: 8.10.7
- 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
Expand Down Expand Up @@ -84,7 +89,7 @@ jobs:
strategy:
matrix:
stack: ["2.9.3"]
ghc: ["9.2.5"]
ghc: ["9.2.7"]

steps:
- uses: actions/checkout@v3
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 🎂

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-grep/simple-grep.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions iris.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down

0 comments on commit 696117d

Please sign in to comment.