Skip to content

Commit f6de0fa

Browse files
authored
Merge pull request #521 from alexfmpe/ghc-9.12
Support GHC 9.12
2 parents fa61053 + 23383f3 commit f6de0fa

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/haskell.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
build:
77
strategy:
88
matrix:
9-
ghc: ['8.4.4', '8.6.5', '8.8.4', '8.10.7', '9.0.2', '9.2.5', '9.4.5', '9.6.1', '9.8.2', '9.10.1']
9+
ghc: ['8.4.4', '8.6.5', '8.8.4', '8.10.7', '9.0.2', '9.2.5', '9.4.5', '9.6.1', '9.8.2', '9.10.1', '9.12.1']
1010
os: ['ubuntu-latest', 'macos-latest']
1111
runs-on: ${{ matrix.os }}
1212

reflex.cabal

+5-5
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ extra-source-files:
2828
ChangeLog.md
2929

3030
tested-with:
31-
GHC ==8.4.4 || ==8.6.5 || ==8.8.1 || ==8.10.7 || ==9.0.1 || ==9.2.5 || ==9.4.5 || ==9.6.1 || ==9.8.2 || ==9.10.1,
31+
GHC ==8.4.4 || ==8.6.5 || ==8.8.1 || ==8.10.7 || ==9.0.1 || ==9.2.5 || ==9.4.5 || ==9.6.1 || ==9.8.2 || ==9.10.1 || ==9.12.1,
3232
GHCJS ==8.6 || ==8.10
3333

3434
flag use-reflex-optimizer
@@ -71,14 +71,14 @@ library
7171
hs-source-dirs: src
7272
build-depends:
7373
MemoTrie == 0.6.*,
74-
base >= 4.11 && < 4.21,
74+
base >= 4.11 && < 4.22,
7575
bifunctors >= 5.2 && < 5.7,
7676
comonad >= 5.0.4 && < 5.1,
7777
commutative-semigroups >= 0.1 && <0.3,
7878
constraints >= 0.10 && <0.15,
7979
constraints-extras >= 0.3 && < 0.5,
8080
containers >= 0.6 && < 0.8,
81-
data-default >= 0.5 && < 0.8,
81+
data-default >= 0.5 && < 0.9,
8282
dependent-map >= 0.3 && < 0.5,
8383
dependent-sum >= 0.6 && < 0.8,
8484
exceptions >= 0.10 && < 0.11,
@@ -97,7 +97,7 @@ library
9797
semigroupoids >= 4.0 && < 7,
9898
stm >= 2.4 && < 2.6,
9999
syb >= 0.5 && < 0.8,
100-
time >= 1.4 && < 1.13,
100+
time >= 1.4 && < 1.15,
101101
transformers >= 0.5 && < 0.7,
102102
unbounded-delays >= 0.1.0.0 && < 0.2,
103103
witherable >= 0.4 && < 0.6
@@ -189,7 +189,7 @@ library
189189
build-depends:
190190
haskell-src-exts >= 1.16 && < 1.24,
191191
haskell-src-meta >= 0.6 && < 0.9,
192-
template-haskell >= 2.9 && < 2.23
192+
template-haskell >= 2.9 && < 2.24
193193
exposed-modules:
194194
Reflex.Dynamic.TH
195195
other-extensions: TemplateHaskell

0 commit comments

Comments
 (0)