diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,17 @@
+# Changelog
+
+## [0.2.0.1] - 2022-04-26
+
+### Added
+
+* Compatibility with `GHC >= 9`
+
+## [0.2.0.0] - 2021-06-19
+
+### Added
+
+* Dependency on `sydtest-persistent`
+
+### Changed
+
+* Type of `runSqliteTest` is changed to run `SqlPersistM` instead of `SqlPersistT IO`
diff --git a/src/Test/Syd/Persistent/Postgresql.hs b/src/Test/Syd/Persistent/Postgresql.hs
--- a/src/Test/Syd/Persistent/Postgresql.hs
+++ b/src/Test/Syd/Persistent/Postgresql.hs
@@ -49,7 +49,7 @@
 
 -- | Set up a postgresql connection and migrate it to run the given function.
 withConnectionPool :: Migration -> (ConnectionPool -> IO r) -> IO r
-withConnectionPool = unSetupFunc . connectionPoolSetupFunc
+withConnectionPool migration func = unSetupFunc (connectionPoolSetupFunc migration) func
 
 -- | The 'SetupFunc' version of 'withConnectionPool'.
 connectionPoolSetupFunc :: Migration -> SetupFunc ConnectionPool
diff --git a/sydtest-persistent-postgresql.cabal b/sydtest-persistent-postgresql.cabal
--- a/sydtest-persistent-postgresql.cabal
+++ b/sydtest-persistent-postgresql.cabal
@@ -1,11 +1,11 @@
 cabal-version: 1.12
 
--- This file has been generated from package.yaml by hpack version 0.34.4.
+-- This file has been generated from package.yaml by hpack version 0.34.7.
 --
 -- see: https://github.com/sol/hpack
 
 name:           sydtest-persistent-postgresql
-version:        0.2.0.0
+version:        0.2.0.1
 synopsis:       An persistent-postgresql companion library for sydtest
 category:       Testing
 homepage:       https://github.com/NorfairKing/sydtest#readme
@@ -16,6 +16,9 @@
 license:        OtherLicense
 license-file:   LICENSE.md
 build-type:     Simple
+extra-source-files:
+    LICENSE.md
+    CHANGELOG.md
 
 source-repository head
   type: git
@@ -60,7 +63,6 @@
       base >=4.7 && <5
     , persistent
     , persistent-postgresql
-    , persistent-template
     , sydtest
     , sydtest-persistent-postgresql
   if flag(sydtest_integration_tests)
diff --git a/test/Test/Syd/Persistent/Example.hs b/test/Test/Syd/Persistent/Example.hs
--- a/test/Test/Syd/Persistent/Example.hs
+++ b/test/Test/Syd/Persistent/Example.hs
@@ -12,6 +12,7 @@
 {-# LANGUAGE TemplateHaskell #-}
 {-# LANGUAGE TypeFamilies #-}
 {-# LANGUAGE UndecidableInstances #-}
+{-# OPTIONS_GHC -fno-warn-name-shadowing #-}
 
 module Test.Syd.Persistent.Example where
 
