diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,14 @@
 `colourista` uses [PVP Versioning][1].
 The changelog is available [on GitHub][2].
 
+## 0.1.0.2 – Oct 5, 2022
+
+* [#95](https://github.com/kowainik/colourista/issues/95):
+  Support GHC-9.2.
+* Support GHC-9.4.
+* Upgrade `text` to version `2.0`.
+* Upgrade `hspec` version.
+
 ## 🐰🥚 0.1.0.1 — Apr 5, 2021
 
 * [#55](https://github.com/kowainik/colourista/issues/55):
diff --git a/colourista.cabal b/colourista.cabal
--- a/colourista.cabal
+++ b/colourista.cabal
@@ -1,6 +1,6 @@
 cabal-version:       2.4
 name:                colourista
-version:             0.1.0.1
+version:             0.1.0.2
 synopsis:            Convenient interface for printing colourful messages
 description:         Convenient interface for printing colourful messages based on the @ansi-terminal@ library.
 homepage:            https://github.com/kowainik/colourista
@@ -9,7 +9,7 @@
 license-file:        LICENSE
 author:              Veronika Romashkina, Dmitrii Kovanikov
 maintainer:          Kowainik <xrom.xkov@gmail.com>
-copyright:           2020-2021 Kowainik
+copyright:           2020-2022 Kowainik
 category:            Terminal, ANSI
 build-type:          Simple
 extra-doc-files:     README.md
@@ -19,14 +19,16 @@
                      GHC == 8.6.5
                      GHC == 8.8.4
                      GHC == 8.10.4
-                     GHC == 9.0.1
+                     GHC == 9.0.2
+                     GHC == 9.2.4
+                     GHC == 9.4.2
 
 source-repository head
   type:                git
   location:            https://github.com/kowainik/colourista.git
 
 common common-options
-  build-depends:       base >= 4.10.1.0 && < 4.16
+  build-depends:       base >= 4.10.1.0 && < 4.18
 
   ghc-options:         -Wall
                        -Wcompat
@@ -73,8 +75,7 @@
 
   build-depends:       ansi-terminal >= 0.10 && < 0.12
                      , bytestring >= 0.10 && < 0.12
-                     , ghc-prim >= 0.5 && < 0.8
-                     , text ^>= 1.2.3.0
+                     , text >= 1.2.3.0 && < 2.1
 
 test-suite colourista-test
   import:              common-options
@@ -85,7 +86,7 @@
 
   build-depends:       colourista
                      , bytestring
-                     , hspec ^>= 2.7.1
+                     , hspec >= 2.7.1 && < 2.11
                      , text
 
   ghc-options:         -threaded
diff --git a/src/Colourista.hs b/src/Colourista.hs
--- a/src/Colourista.hs
+++ b/src/Colourista.hs
@@ -1,5 +1,5 @@
 {- |
-Copyright: (c) 2020-2021 Kowainik
+Copyright: (c) 2020-2022 Kowainik
 SPDX-License-Identifier: MPL-2.0
 Maintainer: Kowainik <xrom.xkov@gmail.com>
 
diff --git a/src/Colourista/IO.hs b/src/Colourista/IO.hs
--- a/src/Colourista/IO.hs
+++ b/src/Colourista/IO.hs
@@ -1,7 +1,7 @@
 {-# LANGUAGE CPP #-}
 
 {- |
-Copyright: (c) 2020-2021 Kowainik
+Copyright: (c) 2020-2022 Kowainik
 SPDX-License-Identifier: MPL-2.0
 Maintainer: Kowainik <xrom.xkov@gmail.com>
 
diff --git a/src/Colourista/Pure.hs b/src/Colourista/Pure.hs
--- a/src/Colourista/Pure.hs
+++ b/src/Colourista/Pure.hs
@@ -1,5 +1,5 @@
 {- |
-Copyright: (c) 2020-2021 Kowainik
+Copyright: (c) 2020-2022 Kowainik
 SPDX-License-Identifier: MPL-2.0
 Maintainer: Kowainik <xrom.xkov@gmail.com>
 
diff --git a/src/Colourista/Short.hs b/src/Colourista/Short.hs
--- a/src/Colourista/Short.hs
+++ b/src/Colourista/Short.hs
@@ -1,7 +1,7 @@
 {-# LANGUAGE CPP #-}
 
 {- |
-Copyright: (c) 2020-2021 Kowainik
+Copyright: (c) 2020-2022 Kowainik
 SPDX-License-Identifier: MPL-2.0
 Maintainer: Kowainik <xrom.xkov@gmail.com>
 
