diff --git a/.github/workflows/haskell-ci.yml b/.github/workflows/haskell-ci.yml index ea81084..2276687 100644 --- a/.github/workflows/haskell-ci.yml +++ b/.github/workflows/haskell-ci.yml @@ -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 diff --git a/http-api-data.cabal b/http-api-data.cabal index 57f71de..1be0481 100644 --- a/http-api-data.cabal +++ b/http-api-data.cabal @@ -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. @@ -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 @@ -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