Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# This GitHub workflow config has been generated by a script via
#
# haskell-ci 'github' 'HTTP.cabal'
# haskell-ci 'github' 'cabal.project'
#
# To regenerate the script (for example after adjusting tested-with) run
#
# haskell-ci regenerate
#
# For more information, see https://github.com/haskell-CI/haskell-ci
#
# version: 0.19.20250917
# version: 0.19.20260104
#
# REGENDATA ("0.19.20250917",["github","HTTP.cabal"])
# REGENDATA ("0.19.20260104",["github","cabal.project"])
#
name: Haskell-CI
on:
Expand All @@ -35,6 +35,11 @@ jobs:
strategy:
matrix:
include:
- compiler: ghc-9.14.1
compilerKind: ghc
compilerVersion: 9.14.1
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.12.2
compilerKind: ghc
compilerVersion: 9.12.2
Expand Down
9 changes: 5 additions & 4 deletions HTTP.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Cabal-Version: 3.0
Name: HTTP
Version: 4000.4.1
x-revision: 5
Version: 4000.5.0
x-revision: 1
Build-type: Simple
License: BSD-3-Clause
License-file: LICENSE
Expand Down Expand Up @@ -58,6 +58,7 @@ Description:
Extra-Source-Files: CHANGES

tested-with:
GHC == 9.14.1
GHC == 9.12.2
GHC == 9.10.3
GHC == 9.8.4
Expand Down Expand Up @@ -118,11 +119,11 @@ Library
-- note the test harness constraints should be kept in sync with these
-- where dependencies are shared
build-depends:
base >= 4.6.0.0 && < 4.22
base >= 4.6.0.0 && < 4.23
, array >= 0.3.0.2 && < 0.6
, bytestring >= 0.9.1.5 && < 0.13
, parsec >= 2.0 && < 3.2
, time >= 1.1.2.3 && < 1.15
, time >= 1.1.2.3 && < 1.16
, transformers >= 0.2.0.0 && < 0.7
-- transformers-0.2.0.0 is the first to have Control.Monad.IO.Class
-- The following dependencies are refined by flags, but they should
Expand Down