Skip to content

Commit 4e21515

Browse files
committed
Support GHC-9.14
1 parent 9edf85e commit 4e21515

File tree

3 files changed

+18
-11
lines changed

3 files changed

+18
-11
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,24 +37,29 @@ jobs:
3737
strategy:
3838
matrix:
3939
include:
40-
- compiler: ghc-9.12.1
40+
- compiler: ghc-9.14.1
4141
compilerKind: ghc
42-
compilerVersion: 9.12.1
42+
compilerVersion: 9.14.1
4343
setup-method: ghcup
4444
allow-failure: false
45-
- compiler: ghc-9.10.1
45+
- compiler: ghc-9.12.2
4646
compilerKind: ghc
47-
compilerVersion: 9.10.1
47+
compilerVersion: 9.12.2
48+
setup-method: ghcup
49+
allow-failure: false
50+
- compiler: ghc-9.10.2
51+
compilerKind: ghc
52+
compilerVersion: 9.10.2
4853
setup-method: ghcup
4954
allow-failure: false
5055
- compiler: ghc-9.8.4
5156
compilerKind: ghc
5257
compilerVersion: 9.8.4
5358
setup-method: ghcup
5459
allow-failure: false
55-
- compiler: ghc-9.6.6
60+
- compiler: ghc-9.6.7
5661
compilerKind: ghc
57-
compilerVersion: 9.6.6
62+
compilerVersion: 9.6.7
5863
setup-method: ghcup
5964
allow-failure: false
6065
- compiler: ghc-9.4.8

test-all.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ testbuild() {
2525
$OPERATION --builddir="dist-newstyle/ghc-$1-time-$2" --with-compiler="ghc-$1" --constraint="time==$2"
2626
}
2727

28+
testbuild 9.14.1 1.15
2829
testbuild 9.12.2 1.15
2930
testbuild 9.8.4 1.15
3031

time-compat.cabal

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 1.12
22
name: time-compat
3-
version: 1.9.8
3+
version: 1.9.9
44
synopsis: Compatibility package for time
55
description:
66
This packages tries to compat as much of @time@ features as possible.
@@ -29,10 +29,11 @@ tested-with:
2929
|| ==9.0.2
3030
|| ==9.2.8
3131
|| ==9.4.8
32-
|| ==9.6.6
32+
|| ==9.6.7
3333
|| ==9.8.4
34-
|| ==9.10.1
35-
|| ==9.12.1
34+
|| ==9.10.2
35+
|| ==9.12.2
36+
|| ==9.14.1
3637

3738
source-repository head
3839
type: git
@@ -44,7 +45,7 @@ library
4445
other-extensions: CPP
4546
default-extensions: Trustworthy
4647
build-depends:
47-
base >=4.12 && <4.22
48+
base >=4.12 && <4.23
4849
, base-orphans >=0.9.2 && <0.10
4950
, deepseq >=1.4.4.0 && <1.6
5051
, hashable >=1.4.4.0 && <1.6

0 commit comments

Comments
 (0)