diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
 # eventium-postgresql Changelog
 
+## 0.6.1
+
+- Raise `base` lower bound to `>= 4.20` (GHC 9.10) to match the supported toolchain.
+- Add `homepage: https://eventium.dev`.
+
 ## 0.2.1 (Unreleased)
 
 - `postgresqlCheckpointStore` -- PostgreSQL-backed `CheckpointStore` for `SequenceNumber` tracking.
diff --git a/eventium-postgresql.cabal b/eventium-postgresql.cabal
--- a/eventium-postgresql.cabal
+++ b/eventium-postgresql.cabal
@@ -5,7 +5,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           eventium-postgresql
-version:        0.6.0
+version:        0.6.1
 synopsis:       Postgres implementations for eventium
 description:    Eventium-postgresql provides a PostgreSQL-based event store implementation for the Eventium event
                 sourcing framework. It uses the Persistent library for type-safe database access and provides
@@ -13,8 +13,8 @@
                 optimistic concurrency control. This is a production-ready backend for event-sourced applications.
 category:       Database,Eventsourcing,PostgreSQL
 stability:      experimental
-homepage:       https://github.com/aleks-sidorenko/eventium#readme
-bug-reports:    https://github.com/aleks-sidorenko/eventium/issues
+homepage:       https://eventium.dev
+bug-reports:    https://github.com/eventium-hs/eventium/issues
 maintainer:     Alexander Sidorenko
 license:        MIT
 license-file:   LICENSE.md
@@ -25,7 +25,7 @@
 
 source-repository head
   type: git
-  location: https://github.com/aleks-sidorenko/eventium
+  location: https://github.com/eventium-hs/eventium
 
 flag ci
   description: Enable -Werror for CI builds
@@ -47,10 +47,10 @@
   ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wredundant-constraints -Wno-type-defaults -Wno-incomplete-uni-patterns
   build-depends:
       aeson >=1.5 && <2.3
-    , base >=4.9 && <5
+    , base >=4.20 && <5
     , bytestring >=0.10 && <0.13
-    , eventium-core >=0.6.0 && <0.7.0
-    , eventium-sql-common >=0.6.0 && <0.7.0
+    , eventium-core >=0.6.1 && <0.7.0
+    , eventium-sql-common >=0.6.1 && <0.7.0
     , mtl >=2.2 && <2.4
     , persistent >=2.14 && <2.18
     , text >=1.2 && <2.2
@@ -80,10 +80,10 @@
   build-depends:
       HUnit
     , aeson >=1.5 && <2.3
-    , base >=4.9 && <5
+    , base >=4.20 && <5
     , bytestring >=0.10 && <0.13
-    , eventium-core >=0.6.0 && <0.7.0
-    , eventium-sql-common >=0.6.0 && <0.7.0
+    , eventium-core >=0.6.1 && <0.7.0
+    , eventium-sql-common >=0.6.1 && <0.7.0
     , eventium-testkit
     , hspec
     , mtl >=2.2 && <2.4
