From e2f7a214d6ebeb802c298995e467fa25cfee9ff4 Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Mon, 6 Jan 2025 08:29:46 +1100 Subject: [PATCH 1/2] Support ghc 9.12 --- vector-th-unbox.cabal | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vector-th-unbox.cabal b/vector-th-unbox.cabal index cf1918d..d41ef96 100644 --- a/vector-th-unbox.cabal +++ b/vector-th-unbox.cabal @@ -42,8 +42,8 @@ library Data.Vector.Unboxed.Deriving build-depends: - base >= 4.9 && < 4.20, - template-haskell >= 2.5 && <2.22, + base >= 4.9 && < 4.22, + template-haskell >= 2.5 && <2.24, vector >= 0.7.1 && <0.14 test-suite sanity From 43e3ba2d9a307f9981feda464d363bd65192d502 Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Mon, 6 Jan 2025 08:30:07 +1100 Subject: [PATCH 2/2] CI: Add ghc 9.12 to the build matrix --- .github/workflows/haskell.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index 84c56fe..e744733 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - ghc: ['8.0', '8.2', '8.4', '8.6', '8.8', '8.10', '9.0', '9.2', '9.4', '9.6', '9.8'] + ghc: ['8.0', '8.2', '8.4', '8.6', '8.8', '8.10', '9.0', '9.2', '9.4', '9.6', '9.8', '9.10', '9.12'] steps: - uses: actions/checkout@v4