Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/packcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ jobs:
fail-fast: false
matrix:
name:
- 9.14.1
- 9.12.1
- 9.10.1
- 9.8.1
Expand All @@ -101,6 +102,12 @@ jobs:
- 8.2.2
- 8.0.2
include:
- name: 9.14.1
ghc-version: 9.14.1
command: cabal-v2
runner: ubuntu-latest
cabal-version: 3.14.1.1

- name: 9.12.1
ghc-version: 9.12.1
command: cabal-v2
Expand Down
2 changes: 2 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## (Unreleased)

* Support GHC 9.14: allow `base 4.22`
* Support GHC 9.12: allow `base 4.21` and `ghc-prim 0.13`
* Support GHC 9.4 and 9.6: allow `base 4.18` and `ghc-prim 0.10`
* Support `unicode-data 0.4`

Expand Down
4 changes: 3 additions & 1 deletion unicode-transforms.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ tested-with: GHC==8.0.2
, GHC==9.6.3
, GHC==9.8.1
, GHC==9.10.1
, GHC==9.12.1
, GHC==9.14.1
build-type: Simple
extra-doc-files:
Changelog.md
Expand Down Expand Up @@ -87,7 +89,7 @@ library
hs-source-dirs: .
ghc-options: -Wall -fwarn-identities -fwarn-incomplete-record-updates -fwarn-incomplete-uni-patterns -fwarn-tabs
build-depends:
base >= 4.8 && < 4.22
base >= 4.8 && < 4.23
, unicode-data >= 0.2 && < 0.9
, bytestring >= 0.9 && < 0.13
, ghc-prim >= 0.2 && < 0.14
Expand Down
Loading