Skip to content

Commit e26197a

Browse files
committed
Re-enable support for GHC 9.2
- tighten the lower bound on `base` - tighten the constraint on `io-classes` Follow-up to #101
1 parent 60c06ce commit e26197a

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

.github/workflows/haskell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
ghc: ["9.4.8", "9.6.7", "9.8.4", "9.10.2", "9.12.2"]
25+
ghc: ["9.2.8", "9.4.8", "9.6.7", "9.8.4", "9.10.2", "9.12.2"]
2626
cabal: ["3.14.1.1"]
2727
os: [ubuntu-latest, windows-latest, macOS-latest]
2828
no-debug: [""]

cabal.project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
index-state:
22
-- Bump this if you need newer packages from Hackage
3-
, hackage.haskell.org 2025-05-26T13:28:18Z
3+
, hackage.haskell.org 2025-06-03T08:53:00Z
44

55
packages:
66
fs-api

fs-api/fs-api.cabal

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ extra-doc-files:
1919
CHANGELOG.md
2020
README.md
2121

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

2424
source-repository head
2525
type: git
@@ -41,13 +41,14 @@ library
4141

4242
default-language: Haskell2010
4343
build-depends:
44-
, base >=4.14 && <4.22
44+
, base >=4.16 && <4.22
4545
, bytestring ^>=0.10 || ^>=0.11 || ^>=0.12
4646
, containers ^>=0.5 || ^>=0.6 || ^>=0.7
4747
, deepseq ^>=1.4 || ^>=1.5
4848
, digest ^>=0.0
4949
, directory ^>=1.3
5050
, filepath ^>=1.4 || ^>=1.5
51+
, io-classes ^>=1.6 || ^>=1.7 || ^>=1.8.0.1
5152
, io-classes ^>=1.6 || ^>=1.7 || ^>=1.8
5253
, primitive ^>=0.9
5354
, safe-wild-cards ^>=1.0

fs-sim/fs-sim.cabal

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ extra-doc-files:
1919
CHANGELOG.md
2020
README.md
2121

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

2424
source-repository head
2525
type: git
@@ -38,11 +38,12 @@ library
3838

3939
default-language: Haskell2010
4040
build-depends:
41-
, base >=4.14 && <4.22
41+
, base >=4.16 && <4.22
4242
, base16-bytestring ^>=0.1 || ^>=1.0
4343
, bytestring ^>=0.10 || ^>=0.11 || ^>=0.12
4444
, containers ^>=0.5 || ^>=0.6 || ^>=0.7
4545
, fs-api ^>=0.3
46+
, io-classes ^>=1.6 || ^>=1.7 || ^>=1.8.0.1
4647
, io-classes ^>=1.6 || ^>=1.7 || ^>=1.8
4748
, io-classes:strict-stm
4849
, mtl ^>=2.2 || ^>=2.3

0 commit comments

Comments
 (0)