From 469b3682c1486866f6b5f96d5bba9ff2cb6e5e9f Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Tue, 8 Jul 2025 11:30:03 +1000 Subject: [PATCH 1/2] vector-algorithms.cabal: Bump QuickCheck dependency upper bound --- vector-algorithms.cabal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vector-algorithms.cabal b/vector-algorithms.cabal index 618f5e7..bab1d4a 100644 --- a/vector-algorithms.cabal +++ b/vector-algorithms.cabal @@ -153,7 +153,7 @@ test-suite properties base >= 4.9, bytestring, containers, - QuickCheck > 2.9 && < 2.16, + QuickCheck > 2.9 && < 2.17, vector, vector-algorithms From fb012a3b928f61cea8a877778ce6a4736a09055e Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Tue, 8 Jul 2025 11:32:09 +1000 Subject: [PATCH 2/2] CI: regenerate spec --- .github/workflows/haskell-ci.yml | 32 ++++++++++++++++---------------- vector-algorithms.cabal | 10 +++++----- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/haskell-ci.yml b/.github/workflows/haskell-ci.yml index da8a06d..cdd7895 100644 --- a/.github/workflows/haskell-ci.yml +++ b/.github/workflows/haskell-ci.yml @@ -8,9 +8,9 @@ # # For more information, see https://github.com/haskell-CI/haskell-ci # -# version: 0.19.20250115 +# version: 0.19.20250605 # -# REGENDATA ("0.19.20250115",["github","vector-algorithms.cabal"]) +# REGENDATA ("0.19.20250605",["github","vector-algorithms.cabal"]) # name: Haskell-CI on: @@ -23,7 +23,7 @@ on: jobs: linux: name: Haskell-CI - Linux - ${{ matrix.compiler }} - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 timeout-minutes: 60 container: @@ -32,29 +32,29 @@ jobs: strategy: matrix: include: - - compiler: ghc-9.12.1 + - compiler: ghc-9.12.2 compilerKind: ghc - compilerVersion: 9.12.1 + compilerVersion: 9.12.2 setup-method: ghcup allow-failure: false - - compiler: ghc-9.10.1 + - compiler: ghc-9.10.2 compilerKind: ghc - compilerVersion: 9.10.1 + compilerVersion: 9.10.2 setup-method: ghcup allow-failure: false - - compiler: ghc-9.8.2 + - compiler: ghc-9.8.4 compilerKind: ghc - compilerVersion: 9.8.2 + compilerVersion: 9.8.4 setup-method: ghcup allow-failure: false - - compiler: ghc-9.6.3 + - compiler: ghc-9.6.7 compilerKind: ghc - compilerVersion: 9.6.3 + compilerVersion: 9.6.7 setup-method: ghcup allow-failure: false - - compiler: ghc-9.4.7 + - compiler: ghc-9.4.8 compilerKind: ghc - compilerVersion: 9.4.7 + compilerVersion: 9.4.8 setup-method: ghcup allow-failure: false - compiler: ghc-9.2.8 @@ -101,12 +101,12 @@ jobs: - name: Install GHCup run: | mkdir -p "$HOME/.ghcup/bin" - curl -sL https://downloads.haskell.org/ghcup/0.1.30.0/x86_64-linux-ghcup-0.1.30.0 > "$HOME/.ghcup/bin/ghcup" + curl -sL https://downloads.haskell.org/ghcup/0.1.50.1/x86_64-linux-ghcup-0.1.50.1 > "$HOME/.ghcup/bin/ghcup" chmod a+x "$HOME/.ghcup/bin/ghcup" - name: Install cabal-install run: | - "$HOME/.ghcup/bin/ghcup" install cabal 3.12.1.0 || (cat "$HOME"/.ghcup/logs/*.* && false) - echo "CABAL=$HOME/.ghcup/bin/cabal-3.12.1.0 -vnormal+nowrap" >> "$GITHUB_ENV" + "$HOME/.ghcup/bin/ghcup" install cabal 3.14.2.0 || (cat "$HOME"/.ghcup/logs/*.* && false) + echo "CABAL=$HOME/.ghcup/bin/cabal-3.14.2.0 -vnormal+nowrap" >> "$GITHUB_ENV" - name: Install GHC (GHCup) if: matrix.setup-method == 'ghcup' run: | diff --git a/vector-algorithms.cabal b/vector-algorithms.cabal index bab1d4a..6c1351f 100644 --- a/vector-algorithms.cabal +++ b/vector-algorithms.cabal @@ -18,11 +18,11 @@ build-type: Simple extra-source-files: CHANGELOG.md tested-with: - GHC == 9.12.1 - GHC == 9.10.1 - GHC == 9.8.2 - GHC == 9.6.3 - GHC == 9.4.7 + GHC == 9.12.2 + GHC == 9.10.2 + GHC == 9.8.4 + GHC == 9.6.7 + GHC == 9.4.8 GHC == 9.2.8 GHC == 9.0.2 GHC == 8.10.7