diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
 # eventium-memory 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)
 
 - Tests for `snapshotEventHandler`, `snapshotGlobalEventHandler`, `applyCommandHandlerWithCache`.
diff --git a/eventium-memory.cabal b/eventium-memory.cabal
--- a/eventium-memory.cabal
+++ b/eventium-memory.cabal
@@ -5,7 +5,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           eventium-memory
-version:        0.6.0
+version:        0.6.1
 synopsis:       In-memory implementations for eventium
 description:    Eventium-memory provides in-memory implementations of event stores and projection caches
                 for the Eventium event sourcing framework. This package is ideal for development, testing, and prototyping
@@ -13,8 +13,8 @@
                 STM-based concurrent data structures for thread-safe access.
 category:       Database,Eventsourcing
 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,9 +47,9 @@
       OverloadedRecordDot
   ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wredundant-constraints -Wno-type-defaults -Wno-incomplete-uni-patterns
   build-depends:
-      base >=4.9 && <5
+      base >=4.20 && <5
     , containers >=0.6 && <0.8
-    , eventium-core >=0.6.0 && <0.7.0
+    , eventium-core >=0.6.1 && <0.7.0
     , mtl >=2.2 && <2.4
     , safe ==0.3.*
     , stm ==2.5.*
@@ -87,9 +87,9 @@
       hspec-discover:hspec-discover
   build-depends:
       HUnit
-    , base >=4.9 && <5
+    , base >=4.20 && <5
     , containers >=0.6 && <0.8
-    , eventium-core >=0.6.0 && <0.7.0
+    , eventium-core >=0.6.1 && <0.7.0
     , eventium-testkit
     , hspec
     , mtl >=2.2 && <2.4
