From ccb6748dc39c45e7eab0a4bbbefcd29f90dd8ee8 Mon Sep 17 00:00:00 2001 From: Tom Ellis Date: Thu, 30 May 2024 18:21:34 +0100 Subject: [PATCH] Support GHC 9.10 --- .github/workflows/ci.yml | 2 +- cabal.project.9.10.1 | 1 + clay.cabal | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) create mode 120000 cabal.project.9.10.1 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bb26d46..248b514 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ghc: ['8.4.4', '8.6.5', '8.8.4', '8.10.7', '9.0.2', '9.2.2', '9.4.2', '9.6.3', '9.8.1'] + ghc: ['8.4.4', '8.6.5', '8.8.4', '8.10.7', '9.0.2', '9.2.2', '9.4.2', '9.6.3', '9.8.1', '9.10.1'] name: Haskell GHC ${{ matrix.ghc }} cabal env: cabal_project_freeze: cabal.project.${{ matrix.ghc }}.freeze diff --git a/cabal.project.9.10.1 b/cabal.project.9.10.1 new file mode 120000 index 0000000..b4c9cea --- /dev/null +++ b/cabal.project.9.10.1 @@ -0,0 +1 @@ +cabal.project \ No newline at end of file diff --git a/clay.cabal b/clay.cabal index 2a5e0ab..4d26e6d 100644 --- a/clay.cabal +++ b/clay.cabal @@ -77,7 +77,7 @@ Library Clay.Transition Build-Depends: - base >= 4.11 && < 4.20, + base >= 4.11 && < 4.21, mtl >= 1, text >= 0.11 GHC-Options: -Wall -Wcompat @@ -89,7 +89,7 @@ Test-Suite Test-Clay Build-Tools: hspec-discover main-is: Spec.hs Build-Depends: - base >= 4.11 && < 4.20, + base >= 4.11 && < 4.21, mtl >= 1, text >= 0.11, hspec >= 2.2.0,