From 5ac6c16d90e68f37357fbfd76e5e1e795a9020dd Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Wed, 7 Aug 2024 14:39:52 +1000 Subject: [PATCH 1/2] Bump containers upper dependency bound ghc-9.10 requires containers == 0.7.* --- prometheus.cabal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prometheus.cabal b/prometheus.cabal index c38431917..4cfce28a0 100644 --- a/prometheus.cabal +++ b/prometheus.cabal @@ -91,7 +91,7 @@ library build-depends: base >= 4.9 && < 5 , atomic-primops >= 0.8 && < 0.9 , bytestring >= 0.10 && < 0.13 - , containers >= 0.5 && < 0.7 + , containers >= 0.5 && < 0.8 , http-client >= 0.4 && < 0.8 , http-client-tls >= 0.3 && < 0.4 , http-types >= 0.8 && < 0.13 From b0cdef93232331fe256775439058b9027ae4e377 Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Wed, 7 Aug 2024 14:43:09 +1000 Subject: [PATCH 2/2] CI: Add ghc-9.10 to the build matrix Also update some other GHC versions. --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index feab7ba1b..f1fd06222 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,8 +21,9 @@ jobs: - "9.0.2" - "9.2.8" - "9.4.8" - - "9.6.4" - - "9.8.1" + - "9.6.6" + - "9.8.2" + - "9.10.1" steps: - uses: actions/checkout@v4