diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,15 @@
 `co-log-core` uses [PVP Versioning][1].
 The change log is available [on GitHub][2].
 
+## 0.3.2.2 — May 21, 2024
+
+## What's Changed
+* GA(deps): Bump actions/cache from 3 to 4 by @dependabot in https://github.com/co-log/co-log-core/pull/40
+* Support ghc-9.10. by @alaendle in https://github.com/co-log/co-log-core/pull/41
+
+
+**Full Changelog**: https://github.com/co-log/co-log-core/compare/v0.3.2.1...v0.3.2.2
+
 ## 0.3.2.1 — Oct 20, 2023
 
 ## What's Changed
@@ -17,6 +26,7 @@
 * @Vekhir made their first contribution in https://github.com/co-log/co-log-core/pull/36
 
 **Full Changelog**: https://github.com/co-log/co-log-core/compare/v0.3.2.0...v0.3.2.1
+
 ## 0.3.2.0 — Nov 2, 2022
 
 - [#25](https://github.com/co-log/co-log-core/issues/25):
diff --git a/co-log-core.cabal b/co-log-core.cabal
--- a/co-log-core.cabal
+++ b/co-log-core.cabal
@@ -1,6 +1,6 @@
 cabal-version:       2.4
 name:                co-log-core
-version:             0.3.2.1
+version:             0.3.2.2
 synopsis:            Composable Contravariant Comonadic Logging Library
 description:
     This package provides core types and functions to work with the @LogAction@ data type which is both simple and powerful.
@@ -27,7 +27,7 @@
 license-file:        LICENSE
 author:              Dmitrii Kovanikov
 maintainer:          Kowainik <xrom.xkov@gmail.com>
-copyright:           2018-2020 Kowainik, 2021-2023 Co-Log
+copyright:           2018-2020 Kowainik, 2021-2024 Co-Log
 category:            Logging, Contravariant, Comonad
 build-type:          Simple
 stability:           stable
@@ -40,16 +40,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-core.git
 
 common common-options
-  build-depends:       base >= 4.10.1.0 && < 4.20
+  build-depends:       base >= 4.10.1.0 && < 4.21
 
   ghc-options:         -Wall
                        -Wcompat
diff --git a/src/Colog/Core.hs b/src/Colog/Core.hs
--- a/src/Colog/Core.hs
+++ b/src/Colog/Core.hs
@@ -1,6 +1,6 @@
 {- |
 Module                  : Colog.Core
-Copyright               : (c) 2018-2020 Kowainik, 2021-2023 Co-Log
+Copyright               : (c) 2018-2020 Kowainik, 2021-2024 Co-Log
 SPDX-License-Identifier : MPL-2.0
 Maintainer              : Co-Log <xrom.xkov@gmail.com>
 Stability               : Stable
diff --git a/src/Colog/Core/Action.hs b/src/Colog/Core/Action.hs
--- a/src/Colog/Core/Action.hs
+++ b/src/Colog/Core/Action.hs
@@ -7,7 +7,7 @@
 
 {- |
 Module                  : Colog.Core.Action
-Copyright               : (c) 2018-2020 Kowainik, 2021-2023 Co-Log
+Copyright               : (c) 2018-2020 Kowainik, 2021-2024 Co-Log
 SPDX-License-Identifier : MPL-2.0
 Maintainer              : Co-Log <xrom.xkov@gmail.com>
 Stability               : Stable
diff --git a/src/Colog/Core/Class.hs b/src/Colog/Core/Class.hs
--- a/src/Colog/Core/Class.hs
+++ b/src/Colog/Core/Class.hs
@@ -4,7 +4,7 @@
 
 {- |
 Module                  : Colog.Core.Class
-Copyright               : (c) 2018-2020 Kowainik, 2021-2023 Co-Log
+Copyright               : (c) 2018-2020 Kowainik, 2021-2024 Co-Log
 SPDX-License-Identifier : MPL-2.0
 Maintainer              : Co-Log <xrom.xkov@gmail.com>
 Stability               : Stable
diff --git a/src/Colog/Core/IO.hs b/src/Colog/Core/IO.hs
--- a/src/Colog/Core/IO.hs
+++ b/src/Colog/Core/IO.hs
@@ -2,7 +2,7 @@
 
 {- |
 Module                  : Colog.Core.IO
-Copyright               : (c) 2018-2020 Kowainik, 2021-2023 Co-Log
+Copyright               : (c) 2018-2020 Kowainik, 2021-2024 Co-Log
 SPDX-License-Identifier : MPL-2.0
 Maintainer              : Co-Log <xrom.xkov@gmail.com>
 Stability               : Stable
diff --git a/src/Colog/Core/Severity.hs b/src/Colog/Core/Severity.hs
--- a/src/Colog/Core/Severity.hs
+++ b/src/Colog/Core/Severity.hs
@@ -2,7 +2,7 @@
 
 {- |
 Module                  : Colog.Core.Severity
-Copyright               : (c) 2018-2020 Kowainik, 2021-2023 Co-Log
+Copyright               : (c) 2018-2020 Kowainik, 2021-2024 Co-Log
 SPDX-License-Identifier : MPL-2.0
 Maintainer              : Co-Log <xrom.xkov@gmail.com>
 Stability               : Stable
