diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,9 +3,18 @@
 `co-log-polysemy` uses [PVP Versioning][1].
 The changelog is available [on GitHub][2].
 
+## 0.0.1.5 - Jun 8, 2024
+
+### What's Changed
+* GA(deps): Bump actions/cache from 3 to 4 by @dependabot in https://github.com/co-log/co-log-polysemy/pull/23
+* Support ghc-9.10. by @alaendle in https://github.com/co-log/co-log-polysemy/pull/24
+
+
+**Full Changelog**: https://github.com/co-log/co-log-polysemy/compare/v0.0.1.4...v0.0.1.5
+
 ## 0.0.1.4 — Oct 20, 2023
 
-## What's Changed
+### What's Changed
 * update README.md by @udaycruise2903 in [#6](https://github.com/co-log/co-log-polysemy/pull/6)
 * modified 'build-depends' section in README.md by @udaycruise2903 in [#7](https://github.com/co-log/co-log-polysemy/pull/7)
 * GA(deps): Bump actions/checkout from 2 to 3 by @dependabot in [#9](https://github.com/co-log/co-log-polysemy/pull/9)
@@ -17,7 +26,7 @@
 * Support ghc-9.8 by @alaendle in [#20](https://github.com/co-log/co-log-polysemy/pull/20)
 * Publish to hackage directly from GitHub by @alaendle in [#21](https://github.com/co-log/co-log-polysemy/pull/21)
 
-## New Contributors
+### New Contributors
 * @udaycruise2903 made their first contribution in [#6](https://github.com/co-log/co-log-polysemy/pull/6)
 * @dependabot made their first contribution in [#9](https://github.com/co-log/co-log-polysemy/pull/9)
 * @alaendle made their first contribution in [#14](https://github.com/co-log/co-log-polysemy/pull/14)
diff --git a/co-log-polysemy.cabal b/co-log-polysemy.cabal
--- a/co-log-polysemy.cabal
+++ b/co-log-polysemy.cabal
@@ -1,6 +1,6 @@
 cabal-version:       2.4
 name:                co-log-polysemy
-version:             0.0.1.4
+version:             0.0.1.5
 synopsis:            Composable Contravariant Comonadic Logging Library
 description:
     Implementation of the [co-log](http://hackage.haskell.org/package/co-log-core)
@@ -21,7 +21,7 @@
 license-file:        LICENSE
 author:              Dmitrii Kovanikov
 maintainer:          Kowainik <xrom.xkov@gmail.com>
-copyright:           2019-2020 Kowainik, 2021-2023 Co-Log
+copyright:           2019-2020 Kowainik, 2021-2024 Co-Log
 category:            Logging, Contravariant, Comonad, Effects
 build-type:          Simple
 stability:           provisional
@@ -33,16 +33,17 @@
                      GHC == 8.10.7
                      GHC == 9.0.2
                      GHC == 9.2.8
-                     GHC == 9.4.7
-                     GHC == 9.6.3
-                     GHC == 9.8.1
+                     GHC == 9.4.8
+                     GHC == 9.6.5
+                     GHC == 9.8.2
+                     GHC == 9.10.1
 
 source-repository head
   type:                git
   location:            https://github.com/co-log/co-log-polysemy.git
 
 common common-options
-  build-depends:       base >= 4.11 && < 4.20
+  build-depends:       base >= 4.11 && < 4.21
 
   ghc-options:         -O2
                        -Wall
diff --git a/src/Colog/Polysemy.hs b/src/Colog/Polysemy.hs
--- a/src/Colog/Polysemy.hs
+++ b/src/Colog/Polysemy.hs
@@ -1,7 +1,7 @@
 {- |
 Module                  : Colog.Polysemy
 Copyright               : (c) 2019-2020 Kowainik
-                          (c) 2021-2023 Co-Log
+                          (c) 2021-2024 Co-Log
 SPDX-License-Identifier : MPL-2.0
 Maintainer              : Co-Log <xrom.xkov@gmail.com>
 Stability               : Provisional
diff --git a/src/Colog/Polysemy/Effect.hs b/src/Colog/Polysemy/Effect.hs
--- a/src/Colog/Polysemy/Effect.hs
+++ b/src/Colog/Polysemy/Effect.hs
@@ -3,7 +3,7 @@
 {- |
 Module                  : Colog.Polysemy.Effect
 Copyright               : (c) 2019-2020 Kowainik
-                          (c) 2021-2023 Co-Log
+                          (c) 2021-2024 Co-Log
 SPDX-License-Identifier : MPL-2.0
 Maintainer              : Co-Log <xrom.xkov@gmail.com>
 Stability               : Provisional
