From c80955e1cc709e094186b35fd65d9f19b81e8ae2 Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Thu, 1 Feb 2024 12:54:20 +1100 Subject: [PATCH 1/2] Make it build with ghc-9.8 --- prometheus.cabal | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/prometheus.cabal b/prometheus.cabal index 1feb401c1..c38431917 100644 --- a/prometheus.cabal +++ b/prometheus.cabal @@ -90,13 +90,13 @@ library build-depends: base >= 4.9 && < 5 , atomic-primops >= 0.8 && < 0.9 - , bytestring >= 0.10 && < 0.12 + , bytestring >= 0.10 && < 0.13 , containers >= 0.5 && < 0.7 , http-client >= 0.4 && < 0.8 , http-client-tls >= 0.3 && < 0.4 , http-types >= 0.8 && < 0.13 , network-uri >= 2.5 && < 2.7 - , text >= 1.2 && < 2.1 + , text >= 1.2 && < 2.2 , transformers >= 0.4 && < 0.7 , wai >= 3.2 && < 3.3 , warp >= 3.2 && < 3.5 From d35a38f0be2ff23fdc345a2b88e2ce06f6c7cf22 Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Thu, 1 Feb 2024 12:58:29 +1100 Subject: [PATCH 2/2] CI: Add ghc-9.8 to build matirx --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e04c99b48..feab7ba1b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,8 @@ jobs: - "9.0.2" - "9.2.8" - "9.4.8" - - "9.6.3" + - "9.6.4" + - "9.8.1" steps: - uses: actions/checkout@v4