diff --git a/Changelog.markdown b/Changelog.markdown
--- 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
--- a/postgresql-migration.cabal
+++ b/postgresql-migration.cabal
@@ -1,6 +1,6 @@
 cabal-version:              3.0
 name:                       postgresql-migration
-version:                    0.2.1.7
+version:                    0.2.1.8
 synopsis:                   PostgreSQL Schema Migrations
 homepage:                   https://github.com/andrevdm/postgresql-migration
 Bug-reports:                https://github.com/andrevdm/postgresql-migration/issues
@@ -12,13 +12,16 @@
 category:                   Database
 build-type:                 Simple
 description:                A PostgreSQL-simple schema migration utility
-tested-with:                GHC==9.2.4, GHC==9.0.1, GHC==8.8.4, GHC==8.6.5, GHC==8.4.4, GHC==9.6.1
-
-extra-source-files:         License
-                            Readme.markdown
+tested-with:                GHC==9.6.1
+                            GHC==9.4.4
+                            GHC==9.2.7
+                            GHC==9.0.2
+                            GHC==8.8.4
+                            GHC==8.6.5
+                            GHC==9.8.2
+extra-doc-files:            Readme.markdown
                             Changelog.markdown
-
-                            share/test/*.sql
+extra-source-files:         share/test/*.sql
                             share/test/scripts/*.sql
 
 source-repository head
@@ -30,78 +33,65 @@
     base >=4.9 && <5
   default-language:
     Haskell2010
-
-
-common common-ghc-options-ide
-  ghc-options: -fwrite-ide-info -hiedir=.hie
+  ghc-options: -Wall
+               -Wincomplete-uni-patterns
+               -Wincomplete-record-updates
+               -Wcompat
+               -Wredundant-constraints
+               -Wnoncanonical-monad-instances
+               -Widentities
+               -Wpartial-fields
+               -fhide-source-paths
+               -freverse-errors
 
-common common-ghc-options
-  ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -Wcompat -Wredundant-constraints -Wnoncanonical-monad-instances -Widentities -Wpartial-fields -fhide-source-paths -freverse-errors
+  if impl(ghc >= 8.8.1)
+    ghc-options: -fwrite-ide-info -hiedir=.hie
 
+  if impl(ghc >= 8.10)
+    ghc-options: -Wunused-packages
 
 library
   import:                 common-options
-  import:                 common-ghc-options
-
-  if impl(ghc >= 8.8.1)
-    import:                common-ghc-options-ide
-
   exposed-modules:        Database.PostgreSQL.Simple.Migration
                         , Database.PostgreSQL.Simple.Migration.V1Compat
                         , Database.PostgreSQL.Simple.Util
   other-modules:          Paths_postgresql_migration
   autogen-modules:        Paths_postgresql_migration
   hs-source-dirs:         src
-  default-language:       Haskell2010
   build-depends:          base                        >= 4.9      && < 5.0
                         , base64-bytestring           >= 1.0      && < 1.3
-                        , bytestring                  >= 0.10     && < 0.12
+                        , bytestring                  >= 0.10     && < 0.13
                         , cryptohash-md5              >= 0.11     && < 0.12
                         , directory                   >= 1.2      && < 1.4
-                        , filepath                    >= 1.4.1.0  && < 1.5
-                        , postgresql-simple           >= 0.4      && < 0.7
+                        , filepath                    >= 1.4.1.0  && < 1.6
+                        , postgresql-simple           >= 0.4      && < 0.8
                         , time                        >= 1.4      && < 1.13
-                        , text                        >= 1.2      && < 2.1
-
+                        , text                        >= 1.2      && < 2.2
 
 executable migrate
   import:                 common-options
-  import:                 common-ghc-options
-  if impl(ghc >= 8.8.1)
-    import:                common-ghc-options-ide
-
   ghc-options:            -threaded
   main-is:                Main.hs
   other-modules:          Paths_postgresql_migration
   autogen-modules:        Paths_postgresql_migration
   hs-source-dirs:         app
-  default-language:       Haskell2010
   build-depends:          postgresql-migration
                         , base                        >= 4.9      && < 5.0
-                        , base64-bytestring           >= 1.0
-                        , bytestring                  >= 0.10     && < 0.12
-                        , cryptohash-md5              >= 0.11     && < 0.12
-                        , directory                   >= 1.2      && < 1.4
-                        , postgresql-simple           >= 0.4      && < 0.7
-                        , time                        >= 1.4      && < 1.13
-                        , text                        >= 1.2      && < 2.1
+                        , bytestring                  >= 0.10     && < 0.13
+                        , postgresql-simple           >= 0.4      && < 0.8
+                        , text                        >= 1.2      && < 2.2
 
 test-suite tests
   import:                 common-options
-  import:                 common-ghc-options
-  if impl(ghc >= 8.8.1)
-    import:               common-ghc-options-ide
-
   main-is:                Main.hs
   hs-source-dirs:         test
   other-modules:          Database.PostgreSQL.Simple.MigrationTest
-                       ,  Database.PostgreSQL.Simple.MigrationTestV1Compat
-                       ,  Database.PostgreSQL.Simple.TransactionPerRunTest
-                       ,  Database.PostgreSQL.Simple.TransactionPerStepTest
-  default-language:       Haskell2010
+                        , Database.PostgreSQL.Simple.MigrationTestV1Compat
+                        , Database.PostgreSQL.Simple.TransactionPerRunTest
+                        , Database.PostgreSQL.Simple.TransactionPerStepTest
   type:                   exitcode-stdio-1.0
   build-depends:          postgresql-migration
                         , base                        >= 4.9      && < 5.0
-                        , bytestring                  >= 0.10     && < 0.12
-                        , postgresql-simple           >= 0.4      && < 0.7
+                        , postgresql-simple           >= 0.4      && < 0.8
                         , hspec                       >= 2.2      && < 2.12
+                        , bytestring                  >= 0.10     && < 0.13
