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
5 changes: 5 additions & 0 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
11 changes: 6 additions & 5 deletions http-api-data.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ tested-with:
GHC==9.6.7,
GHC==9.8.4,
GHC==9.10.1,
GHC==9.12.2
GHC==9.12.2,
GHC==9.14.1

flag use-text-show
description: Use text-show library for efficient ToHttpApiData implementations.
Expand All @@ -43,9 +44,9 @@ library
hs-source-dirs: src/

-- GHC bundled
build-depends: base >= 4.12.0.0 && < 4.22
build-depends: base >= 4.12.0.0 && < 4.23
, bytestring >= 0.10.8.2 && < 0.13
, containers >= 0.6.0.1 && < 0.8
, containers >= 0.6.0.1 && < 0.9
, text >= 1.2.3.0 && < 1.3 || >=2.0 && <2.2

-- other-dependencies
Expand Down Expand Up @@ -93,8 +94,8 @@ test-suite spec
, uuid-types

build-depends: hspec >= 2.7.1 && <2.12
, QuickCheck >= 2.13.1 && <2.16
, quickcheck-instances >= 0.3.25.2 && <0.4
, QuickCheck >= 2.13.1 && <2.19
, quickcheck-instances >= 0.3.25.2 && <0.5

source-repository head
type: git
Expand Down
Loading