From 07285c2b11482997e59401d57fd588a97c2f4fa0 Mon Sep 17 00:00:00 2001 From: disco-dave <1124825-Disco-Dave@users.noreply.gitlab.com> Date: Sun, 20 Aug 2023 21:35:30 -0400 Subject: [PATCH] relaxed version bound for postgresql-simple --- Changelog.markdown | 1 + postgresql-migration.cabal | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Changelog.markdown b/Changelog.markdown index feaf20c..691144a 100644 --- a/Changelog.markdown +++ b/Changelog.markdown @@ -2,6 +2,7 @@ ## Unreleased * Switch from deprecated cryptohash dependency to cryptohash-md5 +* Relaxed version bounds for postgresql-simple to include 0.7 ## 0.2.1.0 * Forked & renamed to postgresql-migration diff --git a/postgresql-migration.cabal b/postgresql-migration.cabal index 762598d..80b90e8 100644 --- a/postgresql-migration.cabal +++ b/postgresql-migration.cabal @@ -62,7 +62,7 @@ library , cryptohash-md5 >= 0.11 && < 0.12 , directory >= 1.2 && < 1.4 , filepath >= 1.4.1.0 && < 1.5 - , postgresql-simple >= 0.4 && < 0.7 + , postgresql-simple >= 0.4 && < 0.8 , time >= 1.4 && < 1.13 , text >= 1.2 && < 2.1 @@ -75,7 +75,7 @@ executable migrate hs-source-dirs: app build-depends: postgresql-migration , bytestring >= 0.10 && < 0.12 - , postgresql-simple >= 0.4 && < 0.7 + , postgresql-simple >= 0.4 && < 0.8 , text >= 1.2 && < 2.1 test-suite tests @@ -88,5 +88,5 @@ test-suite tests , Database.PostgreSQL.Simple.TransactionPerStepTest type: exitcode-stdio-1.0 build-depends: postgresql-migration - , postgresql-simple >= 0.4 && < 0.7 + , postgresql-simple >= 0.4 && < 0.8 , hspec >= 2.2 && < 2.12