Skip to content

Re-enable support for GHC 9.2 #103

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

Merged
merged 1 commit into from
Jun 3, 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/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ghc: ["9.4.8", "9.6.7", "9.8.4", "9.10.2", "9.12.2"]
ghc: ["9.2.8", "9.4.8", "9.6.7", "9.8.4", "9.10.2", "9.12.2"]
cabal: ["3.14.1.1"]
os: [ubuntu-latest, windows-latest, macOS-latest]
no-debug: [""]
Expand Down
2 changes: 1 addition & 1 deletion 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
, hackage.haskell.org 2025-05-26T13:28:18Z
, hackage.haskell.org 2025-06-03T08:53:00Z

packages:
fs-api
Expand Down
6 changes: 3 additions & 3 deletions fs-api/fs-api.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ extra-doc-files:
CHANGELOG.md
README.md

tested-with: GHC ==9.4 || ==9.6 || ==9.8 || ==9.10 || ==9.12
tested-with: GHC ==9.2 || ==9.4 || ==9.6 || ==9.8 || ==9.10 || ==9.12

source-repository head
type: git
Expand All @@ -41,14 +41,14 @@ library

default-language: Haskell2010
build-depends:
, base >=4.14 && <4.22
, base >=4.16 && <4.22
, bytestring ^>=0.10 || ^>=0.11 || ^>=0.12
, containers ^>=0.5 || ^>=0.6 || ^>=0.7
, deepseq ^>=1.4 || ^>=1.5
, digest ^>=0.0
, directory ^>=1.3
, filepath ^>=1.4 || ^>=1.5
, io-classes ^>=1.6 || ^>=1.7 || ^>=1.8
, io-classes ^>=1.6 || ^>=1.7 || ^>=1.8.0.1
, primitive ^>=0.9
, safe-wild-cards ^>=1.0
, text ^>=1.2 || ^>=2.0 || ^>=2.1
Expand Down
6 changes: 3 additions & 3 deletions fs-sim/fs-sim.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ extra-doc-files:
CHANGELOG.md
README.md

tested-with: GHC ==9.4 || ==9.6 || ==9.8 || ==9.10 || ==9.12
tested-with: GHC ==9.2 || ==9.4 || ==9.6 || ==9.8 || ==9.10 || ==9.12

source-repository head
type: git
Expand All @@ -38,12 +38,12 @@ library

default-language: Haskell2010
build-depends:
, base >=4.14 && <4.22
, base >=4.16 && <4.22
, base16-bytestring ^>=0.1 || ^>=1.0
, bytestring ^>=0.10 || ^>=0.11 || ^>=0.12
, containers ^>=0.5 || ^>=0.6 || ^>=0.7
, fs-api ^>=0.3
, io-classes ^>=1.6 || ^>=1.7 || ^>=1.8
, io-classes ^>=1.6 || ^>=1.7 || ^>=1.8.0.1
, io-classes:strict-stm
, mtl ^>=2.2 || ^>=2.3
, primitive ^>=0.9
Expand Down