diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
 # eventium-sqlite 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)
 
 - `sqliteCheckpointStore` -- SQLite-backed `CheckpointStore` for `SequenceNumber` tracking.
diff --git a/eventium-sqlite.cabal b/eventium-sqlite.cabal
--- a/eventium-sqlite.cabal
+++ b/eventium-sqlite.cabal
@@ -5,7 +5,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           eventium-sqlite
-version:        0.6.0
+version:        0.6.1
 synopsis:       SQLite implementations for eventium
 description:    Eventium-sqlite provides a SQLite-based event store implementation for the Eventium event sourcing
                 framework. It uses the Persistent library for type-safe database access and provides efficient event
@@ -14,8 +14,8 @@
                 a lightweight database is preferred.
 category:       Database,Eventsourcing,SQLite
 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
@@ -26,7 +26,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
@@ -48,10 +48,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
@@ -82,10 +82,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
