From 8f3ccc5b4bdab321edf95eec89933fec3d9420b8 Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Wed, 5 Nov 2025 17:46:14 +0200 Subject: [PATCH] GHC-9.14 rc1 --- 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 1fa9d465..adf71b14 100644 --- a/fixtures/all-versions.github +++ b/fixtures/all-versions.github @@ -29,9 +29,9 @@ jobs: strategy: matrix: include: - - compiler: ghc-9.14.0.20251007 + - compiler: ghc-9.14.0.20251028 compilerKind: ghc - compilerVersion: 9.14.0.20251007 + compilerVersion: 9.14.0.20251028 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 23472c59..6d819328 100644 --- a/fixtures/doctest-version.github +++ b/fixtures/doctest-version.github @@ -29,9 +29,9 @@ jobs: strategy: matrix: include: - - compiler: ghc-9.14.0.20251007 + - compiler: ghc-9.14.0.20251028 compilerKind: ghc - compilerVersion: 9.14.0.20251007 + compilerVersion: 9.14.0.20251028 setup-method: ghcup-prerelease allow-failure: false - compiler: ghc-9.12.2 diff --git a/fixtures/doctest.github b/fixtures/doctest.github index 69462e31..4d725046 100644 --- a/fixtures/doctest.github +++ b/fixtures/doctest.github @@ -29,9 +29,9 @@ jobs: strategy: matrix: include: - - compiler: ghc-9.14.0.20251007 + - compiler: ghc-9.14.0.20251028 compilerKind: ghc - compilerVersion: 9.14.0.20251007 + compilerVersion: 9.14.0.20251028 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 4f237f57..ea9807de 100644 --- a/fixtures/enabled-jobs.github +++ b/fixtures/enabled-jobs.github @@ -29,9 +29,9 @@ jobs: strategy: matrix: include: - - compiler: ghc-9.14.0.20251007 + - compiler: ghc-9.14.0.20251028 compilerKind: ghc - compilerVersion: 9.14.0.20251007 + compilerVersion: 9.14.0.20251028 setup-method: ghcup-prerelease allow-failure: false - compiler: ghc-9.12.2 diff --git a/haskell-ci.cabal b/haskell-ci.cabal index 11b4726a..c48466bc 100644 --- a/haskell-ci.cabal +++ b/haskell-ci.cabal @@ -1,6 +1,6 @@ cabal-version: 2.2 name: haskell-ci -version: 0.19.20251019 +version: 0.19.20251105 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 6672ea85..9f198f0a 100644 --- a/src/HaskellCI/Config/History.hs +++ b/src/HaskellCI/Config/History.hs @@ -101,6 +101,8 @@ configHistory = & field @"cfgVersionMapping" .~ Map.singleton (mkVersion [9,14,1]) (mkVersion [9,14,0,20250908]) , ver 0 19 20251019 := \cfg -> cfg & 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]) ] where ver x y z = [x, y, z]