diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,9 @@
 # Changelog for gargoyle-postgresql
- 
+
+## 0.2.0.2
+
+* Support GHC 9.10
+
 ## 0.2.0.2
 
 * Add support for ghc 9.0.2
diff --git a/gargoyle-postgresql.cabal b/gargoyle-postgresql.cabal
--- a/gargoyle-postgresql.cabal
+++ b/gargoyle-postgresql.cabal
@@ -1,5 +1,5 @@
 name:               gargoyle-postgresql
-version:            0.2.0.2
+version:            0.2.0.3
 license:            BSD3
 license-file:       LICENSE
 author:             Obsidian Systems LLC
@@ -33,7 +33,7 @@
   > withDb dbPath a = withGargoyle defaultPostgres dbPath $ \dbUri -> a =<< connectPostgreSQL dbUri
 
 extra-source-files: ChangeLog.md
-tested-with:        GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2
+tested-with:        GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.8.2 || ==9.10.1
 
 -- Requires postgres to be in the environment to run
 flag enable-psql-test
@@ -45,15 +45,15 @@
   ghc-options:      -Wall
   ghc-prof-options: -fprof-auto-exported
   build-depends:
-      base          >=4.12  && <4.17
-    , bytestring    >=0.10  && <0.12
+      base          >=4.12  && <4.21
+    , bytestring    >=0.10  && <0.13
     , directory     >=1.3   && <1.4
     , gargoyle      >=0.1.1.0 && < 0.2
     , posix-escape  >=0.1   && <0.2
     , process       >=1.5   && <1.7
     , stringsearch  >=0.3   && <0.4
-    , text          >=1.2   && <1.3
-    , unix          >=2.7.2 && <2.8
+    , text          >=1.2   && <2.2
+    , unix          >=2.7.2 && <2.9
 
   hs-source-dirs:   src
   default-language: Haskell2010
diff --git a/src/Gargoyle/PostgreSQL.hs b/src/Gargoyle/PostgreSQL.hs
--- a/src/Gargoyle/PostgreSQL.hs
+++ b/src/Gargoyle/PostgreSQL.hs
@@ -53,6 +53,7 @@
       [ "-U", "postgres"
       , "--no-locale"
       , "-E", "UTF8"
+      , "-A", "trust"
       ]
     ]) { std_in = NoStream, std_out = UseHandle devNull, std_err = Inherit }
   r <- waitForProcess initdb
