Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
4 changes: 2 additions & 2 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:
strategy:
fail-fast: false
matrix:
ghc: ["9.2.8", "9.4.8", "9.6.7", "9.8.4", "9.10.2", "9.12.2"]
cabal: ["3.14.1.1"]
ghc: ["9.2.8", "9.4.8", "9.6.7", "9.8.4", "9.10.3", "9.12.2", "9.14.1"]
cabal: ["3.16.1.0"]
os: [ubuntu-latest, windows-latest, macOS-latest]
no-debug: [""]
include:
Expand Down
8 changes: 7 additions & 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-07-17T14:32:30Z
, hackage.haskell.org 2026-02-23T23:13:53Z

packages:
fs-api
Expand All @@ -12,3 +12,9 @@ benchmarks: True

-- comment me if you are benchmarking
import: cabal.project.debug

if impl(ghc >=9.14)
allow-newer:
, indexed-traversable:base
, safe-wild-cards:template-haskell
, unix-bytestring:base
6 changes: 3 additions & 3 deletions fs-api/fs-api.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ library

default-language: Haskell2010
build-depends:
, base >=4.16 && <4.22
, base >=4.16 && <4.23
, bytestring ^>=0.10 || ^>=0.11 || ^>=0.12
, containers ^>=0.5 || ^>=0.6 || ^>=0.7
, containers ^>=0.5 || ^>=0.6 || ^>=0.7 || ^>=0.8
, deepseq ^>=1.4 || ^>=1.5
, digest ^>=0.0
, directory ^>=1.3
, filepath ^>=1.4 || ^>=1.5
, io-classes ^>=1.6 || ^>=1.7 || ^>=1.8.0.1
, io-classes ^>=1.6 || ^>=1.7 || ^>=1.8.0.1 || ^>=1.9 || ^>=1.10
, 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 @@ -44,16 +44,16 @@ library

default-language: Haskell2010
build-depends:
, base >=4.16 && <4.22
, base >=4.16 && <4.23
, base16-bytestring ^>=0.1 || ^>=1.0
, bytestring ^>=0.10 || ^>=0.11 || ^>=0.12
, containers ^>=0.5 || ^>=0.6 || ^>=0.7 || ^>=0.8
, fs-api ^>=0.4
, io-classes ^>=1.6 || ^>=1.7 || ^>=1.8.0.1
, io-classes ^>=1.6 || ^>=1.7 || ^>=1.8.0.1 || ^>=1.9 || ^>=1.10
, io-classes:strict-stm
, mtl ^>=2.2 || ^>=2.3
, primitive ^>=0.9
, QuickCheck ^>=2.13 || ^>=2.14 || ^>=2.15 || ^>=2.16
, QuickCheck ^>=2.13 || ^>=2.14 || ^>=2.15 || ^>=2.16 || ^>=2.17
, safe-wild-cards ^>=1.0
, text ^>=1.2 || ^>=2.0 || ^>=2.1

Expand Down