From 43301f3db56614ac2897a2fa915badc75285fa14 Mon Sep 17 00:00:00 2001 From: Phil Hazelden Date: Wed, 6 Mar 2024 13:03:51 +0000 Subject: [PATCH] Support GHC 9.8. I assume it works fine with the new packages, but we don't have tests. So I'm gonna wait to merge and release until I've tested properly with the app I have that depends on this. --- ChangeLog.md | 1 + streaming-postgresql-simple.cabal | 10 +++++----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 3b3ed9a..97c8ac0 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -7,6 +7,7 @@ * Support GHC 8.10 * (Revision 1, 2022-11-30) Support GHC 9.0 * (Revision 2, 2023-02-03) Support GHC 9.2 +* (Revision 3, unreleased) Support GHC 9.8 and other package updates ## 0.2.0.4 -- 2019-11-28 diff --git a/streaming-postgresql-simple.cabal b/streaming-postgresql-simple.cabal index e0521b7..a20d9ef 100644 --- a/streaming-postgresql-simple.cabal +++ b/streaming-postgresql-simple.cabal @@ -22,15 +22,15 @@ library exposed-modules: Database.PostgreSQL.Simple.Streaming build-depends: - base >=4.9 && <4.17, - bytestring >=0.10.8.1 && <0.12, + base >=4.9 && <4.20, + bytestring >=0.10.8.1 && <0.13, exceptions >=0.8.3 && <0.11, - postgresql-libpq >=0.9.2.0 && <0.10, - postgresql-simple >=0.5 && <0.7, + postgresql-libpq >=0.9.2.0 && <0.11, + postgresql-simple >=0.5 && <0.8, resourcet >=1.1.8.1 && <1.4, safe-exceptions >=0.1.4.0 && <0.2, streaming >=0.1 && <0.3, - transformers >=0.5.2.0 && <0.6 + transformers >=0.5.2.0 && <0.7 default-language: Haskell2010 other-extensions: BangPatterns OverloadedStrings RecordWildCards ScopedTypeVariables