diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,13 +3,19 @@
 `co-log-polysemy` uses [PVP Versioning][1].
 The changelog is available [on GitHub][2].
 
+## 0.0.1.6 - January 5, 2025
+
+### What's Changed
+* Support ghc-9.12
+
+**Full Changelog**: https://github.com/co-log/co-log-polysemy/compare/v0.0.1.5...v0.0.1.6
+
 ## 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
@@ -32,6 +38,7 @@
 * @alaendle made their first contribution in [#14](https://github.com/co-log/co-log-polysemy/pull/14)
 
 **Full Changelog**: https://github.com/co-log/co-log-polysemy/compare/v0.0.1.3...v0.0.1.4
+
 ## 0.0.1.3 — Nov 2, 2021
 
 * [#223](https://github.com/co-log/co-log/pulls/223):
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.5
+version:             0.0.1.6
 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-2024 Co-Log
+copyright:           2019-2020 Kowainik, 2021-2025 Co-Log
 category:            Logging, Contravariant, Comonad, Effects
 build-type:          Simple
 stability:           provisional
@@ -34,16 +34,17 @@
                      GHC == 9.0.2
                      GHC == 9.2.8
                      GHC == 9.4.8
-                     GHC == 9.6.5
-                     GHC == 9.8.2
+                     GHC == 9.6.6
+                     GHC == 9.8.4
                      GHC == 9.10.1
+                     GHC == 9.12.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.21
+  build-depends:       base >= 4.11 && < 4.22
 
   ghc-options:         -O2
                        -Wall
@@ -94,7 +95,7 @@
   import:              common-options
   hs-source-dirs:      src
   exposed-modules:     Colog.Polysemy
-                           Colog.Polysemy.Effect
+                       Colog.Polysemy.Effect
 
   build-depends:       co-log-core ^>= 0.3.0.0
                      , polysemy >= 1.2.0.0 && < 1.10
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-2024 Co-Log
+                          (c) 2021-2025 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-2024 Co-Log
+                          (c) 2021-2025 Co-Log
 SPDX-License-Identifier : MPL-2.0
 Maintainer              : Co-Log <xrom.xkov@gmail.com>
 Stability               : Provisional
