From 3bb8a3e971f645403b3551850ad34feb528afc62 Mon Sep 17 00:00:00 2001 From: David Binder Date: Mon, 17 Jun 2024 18:08:32 +0200 Subject: [PATCH] Support GHC 9.10.1 Bump the upper bound on base to include 4.21, and add GHC 9.10.1 to the version tested in CI. --- .github/workflows/ci.yml | 5 +++++ unicode-collation.cabal | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 83f7878..93a3444 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,6 +63,11 @@ jobs: prefix: '' cabalopts: '-f-doctests --write-ghc-environment-files=always' testopts: '--test-option=--hide-successes' + - ghc: '9.10' + cabal: '3.10' + prefix: '' + cabalopts: '-f-doctests --write-ghc-environment-files=always' + testopts: '--test-option=--hide-successes' steps: - uses: actions/checkout@v2 diff --git a/unicode-collation.cabal b/unicode-collation.cabal index 49c67d8..032ea06 100644 --- a/unicode-collation.cabal +++ b/unicode-collation.cabal @@ -35,6 +35,7 @@ tested-with: GHC == 8.4.4 GHC == 9.4.2 GHC == 9.6.3 GHC == 9.8.1 + GHC == 9.10.1 source-repository head type: git @@ -50,7 +51,7 @@ flag executable Default: False common common-options - build-depends: base >= 4.11 && < 4.20 + build-depends: base >= 4.11 && < 4.21 ghc-options: -Wall -Wcompat