Skip to content

Commit f542af0

Browse files
committed
Support GHC 9.14
Closes #18
1 parent 61c49d9 commit f542af0

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

.github/workflows/haskell.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
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']
18+
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', '9.14']
1919

2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v6
2222

2323
- uses: haskell-actions/setup@v2
2424
id: setup
@@ -28,7 +28,7 @@ jobs:
2828
cabal-update: true
2929

3030
- name: Restore cached dependencies
31-
uses: actions/cache/restore@v4
31+
uses: actions/cache/restore@v5
3232
id: cache
3333
env:
3434
key: ${{ runner.os }}-ghc-${{ steps.setup.outputs.ghc-version }}
@@ -49,7 +49,7 @@ jobs:
4949
run: cabal test
5050

5151
- name: Cache dependencies
52-
uses: actions/cache/save@v4
52+
uses: actions/cache/save@v5
5353
if: always() && steps.cache.outputs.cache-hit != 'true'
5454
with:
5555
path: ${{ steps.setup.outputs.cabal-store }}

vector-th-unbox.cabal

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: vector-th-unbox
22
version: 0.2.2
3+
x-revision: 9
34
synopsis: Deriver for Data.Vector.Unboxed using Template Haskell
45
description:
56
A Template Haskell deriver for unboxed vectors, given a pair of coercion
@@ -17,6 +18,8 @@ category: Data
1718
build-type: Simple
1819
cabal-version: >= 1.10
1920
tested-with:
21+
GHC == 9.12,
22+
GHC == 9.10,
2023
GHC == 9.8,
2124
GHC == 9.6,
2225
GHC == 9.4,
@@ -42,8 +45,8 @@ library
4245
Data.Vector.Unboxed.Deriving
4346

4447
build-depends:
45-
base >= 4.9 && < 4.22,
46-
template-haskell >= 2.5 && <2.24,
48+
base >= 4.9 && < 4.23,
49+
template-haskell >= 2.5 && <2.25,
4750
vector >= 0.7.1 && <0.14
4851

4952
test-suite sanity

0 commit comments

Comments
 (0)