diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,14 @@
 `co-log` uses [PVP Versioning][1].
 The changelog is available [on GitHub][2].
 
+## 0.6.1.1 - January 5, 2025
+
+## What's Changed
+
+* Support ghc-9.10 & ghc-9.12.
+
+**Full Changelog**: https://github.com/co-log/co-log/compare/v0.6.1.0...v0.6.1.1
+
 ## 0.6.1.0 - Mar 1, 2024
 
 ## What's Changed
diff --git a/co-log.cabal b/co-log.cabal
--- a/co-log.cabal
+++ b/co-log.cabal
@@ -1,6 +1,6 @@
 cabal-version:       2.4
 name:                co-log
-version:             0.6.1.0
+version:             0.6.1.1
 synopsis:            Composable Contravariant Comonadic Logging Library
 description:
     The default implementation of logging based on [co-log-core](http://hackage.haskell.org/package/co-log-core).
@@ -15,7 +15,7 @@
 license-file:        LICENSE
 author:              Dmitrii Kovanikov
 maintainer:          Kowainik <xrom.xkov@gmail.com>
-copyright:           2018-2022 Kowainik, 2023-2024 Co-Log
+copyright:           2018-2022 Kowainik, 2023-2025 Co-Log
 category:            Logging, Contravariant, Comonad
 build-type:          Simple
 stability:           provisional
@@ -25,8 +25,10 @@
                      GHC == 9.0.2
                      GHC == 9.2.8
                      GHC == 9.4.8
-                     GHC == 9.6.4
-                     GHC == 9.8.2
+                     GHC == 9.6.6
+                     GHC == 9.8.4
+                     GHC == 9.10.1
+                     GHC == 9.12.1
 
 flag tutorial
   description: Controls if tutorials get build (mainly to avoid building them on hackage).
@@ -37,7 +39,7 @@
   location:            https://github.com/co-log/co-log.git
 
 common common-options
-  build-depends:       base >= 4.14 && < 4.20
+  build-depends:       base >= 4.14 && < 4.22
 
   ghc-options:         -Wall
                        -Wcompat
@@ -153,7 +155,7 @@
   import:              common-options
   build-depends:       co-log
                      , co-log-core
-                     , hedgehog >= 1.0 && < 1.5
+                     , hedgehog >= 1.0 && < 1.6
   hs-source-dirs:      test
   main-is:             Property.hs
   type:                exitcode-stdio-1.0
@@ -167,7 +169,7 @@
   hs-source-dirs:      test
   main-is:             Doctest.hs
 
-  build-depends:       doctest >= 0.16.0 && < 0.23
+  build-depends:       doctest >= 0.16.0 && < 0.24
                      , Glob ^>= 0.10.0
   ghc-options:         -threaded
 
diff --git a/src/Colog.hs b/src/Colog.hs
--- a/src/Colog.hs
+++ b/src/Colog.hs
@@ -1,5 +1,5 @@
 {- |
-Copyright:  (c) 2018-2022 Kowainik, 2023-2024 Co-Log
+Copyright:  (c) 2018-2022 Kowainik, 2023-2025 Co-Log
 SPDX-License-Identifier: MPL-2.0
 
 This package contains @mtl@ implementation of composable, contravariant and
diff --git a/src/Colog/Actions.hs b/src/Colog/Actions.hs
--- a/src/Colog/Actions.hs
+++ b/src/Colog/Actions.hs
@@ -1,5 +1,5 @@
 {- |
-Copyright:  (c) 2018-2022 Kowainik, 2023-2024 Co-Log
+Copyright:  (c) 2018-2022 Kowainik, 2023-2025 Co-Log
 SPDX-License-Identifier: MPL-2.0
 
 Logging actions for various text types.
diff --git a/src/Colog/Contra.hs b/src/Colog/Contra.hs
--- a/src/Colog/Contra.hs
+++ b/src/Colog/Contra.hs
@@ -3,7 +3,7 @@
 {-# LANGUAGE CPP #-}
 
 {- |
-Copyright:  (c) 2018-2022 Kowainik, 2023-2024 Co-Log
+Copyright:  (c) 2018-2022 Kowainik, 2023-2025 Co-Log
 SPDX-License-Identifier: MPL-2.0
 
 This module contains 'LogAction' orphan instances of @contravariant@ classes.
diff --git a/src/Colog/Message.hs b/src/Colog/Message.hs
--- a/src/Colog/Message.hs
+++ b/src/Colog/Message.hs
@@ -8,7 +8,7 @@
 {-# LANGUAGE TypeFamilies          #-}
 
 {- |
-Copyright:  (c) 2018-2022 Kowainik, 2023-2024 Co-Log
+Copyright:  (c) 2018-2022 Kowainik, 2023-2025 Co-Log
 SPDX-License-Identifier: MPL-2.0
 
 This module contains logging messages data types along with the formatting and
diff --git a/src/Colog/Monad.hs b/src/Colog/Monad.hs
--- a/src/Colog/Monad.hs
+++ b/src/Colog/Monad.hs
@@ -1,7 +1,7 @@
 {-# LANGUAGE InstanceSigs #-}
 
 {- |
-Copyright:  (c) 2018-2022 Kowainik, 2023-2024 Co-Log
+Copyright:  (c) 2018-2022 Kowainik, 2023-2025 Co-Log
 SPDX-License-Identifier: MPL-2.0
 
 Core of the @mtl@ implementation.
diff --git a/src/Colog/Pure.hs b/src/Colog/Pure.hs
--- a/src/Colog/Pure.hs
+++ b/src/Colog/Pure.hs
@@ -1,5 +1,5 @@
 {- |
-Copyright:  (c) 2018-2022 Kowainik, 2023-2024 Co-Log
+Copyright:  (c) 2018-2022 Kowainik, 2023-2025 Co-Log
 SPDX-License-Identifier: MPL-2.0
 
 Pure implementation of logging action.
diff --git a/src/Colog/Rotation.hs b/src/Colog/Rotation.hs
--- a/src/Colog/Rotation.hs
+++ b/src/Colog/Rotation.hs
@@ -1,5 +1,5 @@
 {- |
-Copyright:  (c) 2018-2022 Kowainik, 2023-2024 Co-Log
+Copyright:  (c) 2018-2022 Kowainik, 2023-2025 Co-Log
 SPDX-License-Identifier: MPL-2.0
 Stability:  experimental
 
