Skip to content

Commit e0ea99c

Browse files
authored
v4000.5.0 revision 1: Support GHC 9.14 (#165)
1 parent c5196c8 commit e0ea99c

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
#
99
# For more information, see https://github.com/haskell-CI/haskell-ci
1010
#
11-
# version: 0.19.20250917
11+
# version: 0.19.20260104
1212
#
13-
# REGENDATA ("0.19.20250917",["github","HTTP.cabal"])
13+
# REGENDATA ("0.19.20260104",["github","HTTP.cabal"])
1414
#
1515
name: Haskell-CI
1616
on:
@@ -35,6 +35,11 @@ jobs:
3535
strategy:
3636
matrix:
3737
include:
38+
- compiler: ghc-9.14.1
39+
compilerKind: ghc
40+
compilerVersion: 9.14.1
41+
setup-method: ghcup
42+
allow-failure: false
3843
- compiler: ghc-9.12.2
3944
compilerKind: ghc
4045
compilerVersion: 9.12.2

HTTP.cabal

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Cabal-Version: 3.0
22
Name: HTTP
33
Version: 4000.5.0
4+
x-revision: 1
45
Build-type: Simple
56
License: BSD-3-Clause
67
License-file: LICENSE
@@ -57,6 +58,7 @@ Description:
5758
Extra-Source-Files: CHANGES
5859

5960
tested-with:
61+
GHC == 9.14.1
6062
GHC == 9.12.2
6163
GHC == 9.10.3
6264
GHC == 9.8.4
@@ -117,11 +119,11 @@ Library
117119
-- note the test harness constraints should be kept in sync with these
118120
-- where dependencies are shared
119121
build-depends:
120-
base >= 4.6.0.0 && < 4.22
122+
base >= 4.6.0.0 && < 4.23
121123
, array >= 0.3.0.2 && < 0.6
122124
, bytestring >= 0.9.1.5 && < 0.13
123125
, parsec >= 2.0 && < 3.2
124-
, time >= 1.1.2.3 && < 1.15
126+
, time >= 1.1.2.3 && < 1.16
125127
, transformers >= 0.2.0.0 && < 0.7
126128
-- transformers-0.2.0.0 is the first to have Control.Monad.IO.Class
127129
-- The following dependencies are refined by flags, but they should

0 commit comments

Comments
 (0)