Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for ghc 9.6 #133

Merged
merged 1 commit into from
Aug 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@ jobs:
- ubuntu-latest
- macOS-latest
- windows-latest
cabal: [3.10.1.0]
cabal: ["3.10.1.0"]
ghc:
- 8.10.7
- 9.0.2
- 9.2.8
- 9.4.5
- 9.6.2
exclude:
# Test only with latest GHC on windows and macOS
- os: macOS-latest
Expand All @@ -29,12 +30,16 @@ jobs:
ghc: 9.0.2
- os: macOS-latest
ghc: 9.2.8
- os: macOS-latest
ghc: 9.4.5
- os: windows-latest
ghc: 8.10.7
- os: windows-latest
ghc: 9.0.2
- os: windows-latest
ghc: 9.2.8
- os: windows-latest
ghc: 9.4.5
steps:
- uses: actions/checkout@v3
if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/master'
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
The changelog is available [on GitHub][2].

## Unreleased
* Support GHC 9.4.5

* Add GHC 9.4.5 and 9.6.2 to CI / tested-with

## 0.2.0.0 - Mar 29, 2022

Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

[![Hackage](https://img.shields.io/hackage/v/elm-street.svg)](https://hackage.haskell.org/package/elm-street)
[![MPL-2.0 license](https://img.shields.io/badge/license-MPL--2.0-blue.svg)](LICENSE)
[![Stackage Lts](http://stackage.org/package/elm-street/badge/lts)](http://stackage.org/lts/package/elm-street)
[![Stackage Nightly](http://stackage.org/package/elm-street/badge/nightly)](http://stackage.org/nightly/package/elm-street)

Crossing the road between Haskell and Elm.

Expand Down
3 changes: 2 additions & 1 deletion elm-street.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,14 @@ tested-with: GHC == 8.10.7
GHC == 9.0.2
GHC == 9.2.8
GHC == 9.4.5
GHC == 9.6.2

source-repository head
type: git
location: https://github.com/Holmusk/elm-street.git

common common-options
build-depends: base >= 4.11.1.0 && < 4.18
build-depends: base >= 4.11.1.0 && < 4.19

ghc-options: -Wall
-Wincomplete-uni-patterns
Expand Down