Skip to content

Commit df7513d

Browse files
committed
GHC-9.12-alpha3
1 parent 27f84f6 commit df7513d

File tree

6 files changed

+13
-11
lines changed

6 files changed

+13
-11
lines changed

fixtures/all-versions.github

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828
strategy:
2929
matrix:
3030
include:
31-
- compiler: ghc-9.12.0.20241031
31+
- compiler: ghc-9.12.0.20241114
3232
compilerKind: ghc
33-
compilerVersion: 9.12.0.20241031
33+
compilerVersion: 9.12.0.20241114
3434
setup-method: ghcup-prerelease
3535
allow-failure: false
3636
- compiler: ghc-9.10.1

fixtures/doctest-version.github

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828
strategy:
2929
matrix:
3030
include:
31-
- compiler: ghc-9.12.0.20241031
31+
- compiler: ghc-9.12.0.20241114
3232
compilerKind: ghc
33-
compilerVersion: 9.12.0.20241031
33+
compilerVersion: 9.12.0.20241114
3434
setup-method: ghcup-prerelease
3535
allow-failure: false
3636
- compiler: ghc-9.10.1

fixtures/doctest.github

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828
strategy:
2929
matrix:
3030
include:
31-
- compiler: ghc-9.12.0.20241031
31+
- compiler: ghc-9.12.0.20241114
3232
compilerKind: ghc
33-
compilerVersion: 9.12.0.20241031
33+
compilerVersion: 9.12.0.20241114
3434
setup-method: ghcup-prerelease
3535
allow-failure: false
3636
- compiler: ghc-9.10.1

fixtures/enabled-jobs.github

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828
strategy:
2929
matrix:
3030
include:
31-
- compiler: ghc-9.12.0.20241031
31+
- compiler: ghc-9.12.0.20241114
3232
compilerKind: ghc
33-
compilerVersion: 9.12.0.20241031
33+
compilerVersion: 9.12.0.20241114
3434
setup-method: ghcup-prerelease
3535
allow-failure: false
3636
- compiler: ghc-9.10.1

haskell-ci.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: haskell-ci
3-
version: 0.19.20241114
3+
version: 0.19.20241121
44
synopsis: Cabal package script generator for Travis-CI
55
description:
66
Script generator (@haskell-ci@) for
@@ -239,4 +239,4 @@ test-suite golden
239239
, Diff ^>=0.4.0 || ^>=0.5
240240
, tasty ^>=1.4.1 || ^>=1.5
241241
, tasty-golden ^>=2.3.1.1
242-
, tasty-hunit
242+
, tasty-hunit

src/HaskellCI/Config/History.hs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ configHistory =
3939
, ghcupVanilla = C.withinVersion (C.mkVersion [9,8,3])
4040
, ghcupPrerelease = C.orLaterVersion (C.mkVersion [9,12,0])
4141
}
42-
, ver 0 19 2024114 := \cfg -> cfg
42+
, ver 0 19 20241114 := \cfg -> cfg
4343
& field @"cfgSetupMethods" .~ PerSetupMethod
4444
{ hvrPpa = C.noVersion
4545
, ghcup = invertVersionRange (C.withinVersion (C.mkVersion [9,8,3])) /\ C.earlierVersion (C.mkVersion [9,12])
@@ -48,6 +48,8 @@ configHistory =
4848
}
4949
, ver 0 19 20241117 := \cfg -> cfg
5050
& field @"cfgVersionMapping" .~ Map.singleton (mkVersion [9,12,1]) (mkVersion [9,12,0,20241031])
51+
, ver 0 19 20241121 := \cfg -> cfg
52+
& field @"cfgVersionMapping" .~ Map.singleton (mkVersion [9,12,1]) (mkVersion [9,12,0,20241114])
5153
]
5254
where
5355
ver x y z = [x, y, z]

0 commit comments

Comments
 (0)