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.12 #178

Merged
merged 1 commit into from
Jan 12, 2025
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
strategy:
matrix:
include:
- ghc-version: '9.10.1'
- ghc-version: '9.12.1'
os: ubuntu-latest

steps:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### NEXT_RELEASE

* Support GHC 9.10
* Support GHC 9.10 and GHC 9.12

### 0.9.0.8

Expand Down
3 changes: 2 additions & 1 deletion hint.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ tested-with: ghc == 8.10.7
, ghc == 9.6.1
, ghc == 9.8.1
, ghc == 9.10.1
, ghc == 9.12.1

cabal-version: >= 1.10
build-type: Simple
Expand Down Expand Up @@ -73,7 +74,7 @@ library
default-language: Haskell2010
build-depends: base == 4.*,
containers,
ghc >= 8.4 && < 9.11,
ghc >= 8.4 && < 9.13,
ghc-paths,
ghc-boot,
transformers,
Expand Down
Loading