Skip to content

Commit ffbe973

Browse files
authored
Merge pull request #18 from reflex-frp/release/0.2.2.3
Release/0.2.2.3
2 parents dcadd09 + 96b1a3b commit ffbe973

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

.github/workflows/haskell.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,20 @@ on: [push, pull_request]
55
jobs:
66
build:
77
strategy:
8+
fail-fast: false
89
matrix:
9-
ghc: ['8.6', '8.8', '8.10', '9.0', '9.2', '9.4', '9.6', '9.8', '9.10']
10+
ghc: ['8.6', '8.8', '8.10', '9.0', '9.2', '9.4', '9.6', '9.8', '9.10', '9.12']
1011
os: ['ubuntu-latest', 'macos-latest']
1112
runs-on: ${{ matrix.os }}
1213

1314
name: GHC ${{ matrix.ghc }} on ${{ matrix.os }}
1415
steps:
15-
- uses: actions/checkout@v3
16-
- uses: haskell/actions/setup@v2
16+
- uses: actions/checkout@v4
17+
- uses: haskell-actions/setup@v2
1718
with:
1819
ghc-version: ${{ matrix.ghc }}
1920
- name: Cache
20-
uses: actions/cache@v3
21+
uses: actions/cache@v4
2122
env:
2223
cache-name: cache-cabal
2324
with:

ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Revision history for reflex-gadt-api
22

3+
## 0.2.2.3
4+
5+
* Support GHC 9.12
6+
37
## 0.2.2.2
48

59
* Make Readme part of the library

reflex-gadt-api.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: >=1.10
22
name: reflex-gadt-api
3-
version: 0.2.2.2
3+
version: 0.2.2.3
44
synopsis: Interact with a GADT API in your reflex-dom application.
55
description:
66
This package is designed to be used in full-stack Haskell applications where the API is defined as a GADT and the frontend is using reflex-dom.
@@ -17,7 +17,7 @@ extra-source-files:
1717
ChangeLog.md
1818
Readme.md
1919

20-
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.8.2 || ==9.10.1
20+
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.8.2 || ==9.10.1 || ==9.12.1
2121

2222
library
2323
hs-source-dirs: src, .

0 commit comments

Comments
 (0)