From c773974e1eb13f968d28438d4c80d8cdb5630d18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Hr=C4=8Dek?= Date: Thu, 16 May 2024 12:12:33 +0200 Subject: [PATCH] Bump containers upper bound, add ghc 9.10 to CI --- .github/workflows/haskell.yml | 4 ++-- witherable/witherable.cabal | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index f37fc2b..c6a0a90 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -8,13 +8,13 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ghc: [ '8.0.2', '8.2.2', '8.4.4', '8.6.5', '8.8.4', '8.10.7', '9.0.2', '9.2.8', '9.4.7', '9.6.3', '9.8.1' ] + ghc: [ '8.0.2', '8.2.2', '8.4.4', '8.6.5', '8.8.4', '8.10.7', '9.0.2', '9.2.8', '9.4.8', '9.6.5', '9.8.2', '9.10.1' ] steps: - uses: actions/checkout@v4 - uses: haskell/actions/setup@v2 with: ghc-version: ${{ matrix.ghc }} - cabal-version: '3.4' + cabal-version: '3.10' - name: cabal Cache uses: actions/cache@v3 diff --git a/witherable/witherable.cabal b/witherable/witherable.cabal index d98370a..993ea66 100644 --- a/witherable/witherable.cabal +++ b/witherable/witherable.cabal @@ -12,7 +12,8 @@ copyright: Copyright (c) 2014 Fumiaki Kinoshita category: Data build-type: Simple extra-source-files: CHANGELOG.md -tested-with: GHC ==8.0.2 || ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.1 || ==9.2.1 +tested-with: GHC ==8.0.2 || ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 || + ==9.0.1 || ==9.2.8 || ==9.4.8 || ==9.6.5 || ==9.8.2 || ==9.10.1 source-repository head type: git @@ -24,7 +25,7 @@ library Witherable build-depends: base >=4.9 && <5, base-orphans >=0.8.4 && <0.10, - containers >=0.5.7.1 && <0.7, + containers >=0.5.7.1 && <0.8, hashable >=1.2.7.0 && <1.5, transformers >=0.5.2.0 && <0.7, unordered-containers >=0.2.12.0 && <0.3,