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

Support ghc-9.12 #25

Merged
merged 1 commit into from
Feb 11, 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
6 changes: 2 additions & 4 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,9 @@ jobs:
strategy:
fail-fast: false
matrix:
ghc: ["8.10.7", "9.2.8", "9.4.8", "9.6.6", "9.8.4", "9.10.1"]
ghc: ["8.10.7", "9.2.8", "9.4.8", "9.6.6", "9.8.4", "9.10.1", "9.12.1"]
cabal: ["3.12.1.0"]
os: [ubuntu-latest] # ubuntu-latest = ubuntu-22.04
# TODO: revisit once ubuntu-latest moved to 24.04
# https://github.com/actions/runner-images/issues/10636
os: [ubuntu-latest] # ubuntu-latest = ubuntu-24.04
liburing: ["system"]
# system liburing is 2.1 on 22.04, 2.5 on 24.04
include:
Expand Down
4 changes: 2 additions & 2 deletions blockio-uring.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ maintainer: [email protected]
copyright: (c) Well-Typed LLP 2022 - 2024
category: System
build-type: Simple
tested-with: GHC ==8.10 || ==9.2 || ==9.4 || ==9.6 || ==9.8 || ==9.10
tested-with: GHC ==8.10 || ==9.2 || ==9.4 || ==9.6 || ==9.8 || ==9.10 || ==9.12
extra-doc-files:
CHANGELOG.md
README.md
Expand All @@ -41,7 +41,7 @@ library
System.IO.BlockIO.URingFFI

build-depends:
, base >=4.14 && <4.21
, base >=4.14 && <4.22
, primitive ^>=0.9
, vector ^>=0.13

Expand Down
4 changes: 2 additions & 2 deletions cabal.project
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
index-state:
-- Bump this if you need newer packages from Hackage
-- current date: quickcheck-lockstep-0.6.0
, hackage.haskell.org 2024-12-10T00:00:00Z
-- current date: ghc-9.12
, hackage.haskell.org 2025-02-11T00:00:00Z

packages: .
Loading