From 45d3e0960b2c934a7ecb974a5eb05a8ea21ccea9 Mon Sep 17 00:00:00 2001 From: Taylor Fausak Date: Sat, 27 Aug 2022 18:48:06 +0000 Subject: [PATCH] Add support for GHC 9.4 --- .github/workflows/ci.yaml | 1 + witch.cabal | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b5baa09..0b58ccb 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,6 +14,7 @@ jobs: strategy: matrix: include: + - { platform: ubuntu, ghc: 9.4.2 } - { platform: ubuntu, ghc: 9.2.1 } - { platform: ubuntu, ghc: 9.0.1 } - { platform: macos, ghc: 9.2.1 } diff --git a/witch.cabal b/witch.cabal index e513ff8..af59db9 100644 --- a/witch.cabal +++ b/witch.cabal @@ -23,10 +23,10 @@ flag pedantic common library build-depends: - , base >= 4.10.0 && < 4.17 + , base >= 4.10.0 && < 4.18 , bytestring >= 0.10.8 && < 0.12 , containers >= 0.5.10 && < 0.7 - , template-haskell >= 2.12.0 && < 2.19 + , template-haskell >= 2.12.0 && < 2.20 , text >= 1.2.3 && < 1.3 || >= 2.0 && < 2.1 , time >= 1.9.1 && < 1.13 default-language: Haskell2010