From 56f195eadda6d2cf75ad3f77b95b97057f2fdc7e Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Tue, 18 Nov 2025 14:46:58 +0200 Subject: [PATCH] Use GHC-9.14.1 rc2 --- fixtures/all-versions.github | 4 ++-- fixtures/doctest-version.github | 4 ++-- fixtures/doctest.github | 4 ++-- fixtures/enabled-jobs.github | 4 ++-- haskell-ci.cabal | 2 +- src/HaskellCI/Config/History.hs | 2 ++ 6 files changed, 11 insertions(+), 9 deletions(-) diff --git a/fixtures/all-versions.github b/fixtures/all-versions.github index adf71b14..5f4f30aa 100644 --- a/fixtures/all-versions.github +++ b/fixtures/all-versions.github @@ -29,9 +29,9 @@ jobs: strategy: matrix: include: - - compiler: ghc-9.14.0.20251028 + - compiler: ghc-9.14.0.20251104 compilerKind: ghc - compilerVersion: 9.14.0.20251028 + compilerVersion: 9.14.0.20251104 setup-method: ghcup-prerelease allow-failure: false - compiler: ghc-9.12.2 diff --git a/fixtures/doctest-version.github b/fixtures/doctest-version.github index 6d819328..aaf3269e 100644 --- a/fixtures/doctest-version.github +++ b/fixtures/doctest-version.github @@ -29,9 +29,9 @@ jobs: strategy: matrix: include: - - compiler: ghc-9.14.0.20251028 + - compiler: ghc-9.14.0.20251104 compilerKind: ghc - compilerVersion: 9.14.0.20251028 + compilerVersion: 9.14.0.20251104 setup-method: ghcup-prerelease allow-failure: false - compiler: ghc-9.12.2 diff --git a/fixtures/doctest.github b/fixtures/doctest.github index 4d725046..eeac8d71 100644 --- a/fixtures/doctest.github +++ b/fixtures/doctest.github @@ -29,9 +29,9 @@ jobs: strategy: matrix: include: - - compiler: ghc-9.14.0.20251028 + - compiler: ghc-9.14.0.20251104 compilerKind: ghc - compilerVersion: 9.14.0.20251028 + compilerVersion: 9.14.0.20251104 setup-method: ghcup-prerelease allow-failure: false - compiler: ghc-9.12.2 diff --git a/fixtures/enabled-jobs.github b/fixtures/enabled-jobs.github index ea9807de..221d0bed 100644 --- a/fixtures/enabled-jobs.github +++ b/fixtures/enabled-jobs.github @@ -29,9 +29,9 @@ jobs: strategy: matrix: include: - - compiler: ghc-9.14.0.20251028 + - compiler: ghc-9.14.0.20251104 compilerKind: ghc - compilerVersion: 9.14.0.20251028 + compilerVersion: 9.14.0.20251104 setup-method: ghcup-prerelease allow-failure: false - compiler: ghc-9.12.2 diff --git a/haskell-ci.cabal b/haskell-ci.cabal index c48466bc..547d4a25 100644 --- a/haskell-ci.cabal +++ b/haskell-ci.cabal @@ -1,6 +1,6 @@ cabal-version: 2.2 name: haskell-ci -version: 0.19.20251105 +version: 0.19.20251118 synopsis: Haskell CI script generator description: Script generator (@haskell-ci@) for diff --git a/src/HaskellCI/Config/History.hs b/src/HaskellCI/Config/History.hs index 9f198f0a..5a0ac13b 100644 --- a/src/HaskellCI/Config/History.hs +++ b/src/HaskellCI/Config/History.hs @@ -103,6 +103,8 @@ configHistory = & field @"cfgVersionMapping" .~ Map.singleton (mkVersion [9,14,1]) (mkVersion [9,14,0,20251007]) , ver 0 19 20251105 := \cfg -> cfg & field @"cfgVersionMapping" .~ Map.singleton (mkVersion [9,14,1]) (mkVersion [9,14,0,20251028]) + , ver 0 19 20251118 := \cfg -> cfg + & field @"cfgVersionMapping" .~ Map.singleton (mkVersion [9,14,1]) (mkVersion [9,14,0,20251104]) ] where ver x y z = [x, y, z]