diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,7 +2,14 @@
 
 `hslua-repl` uses [PVP Versioning](https://pvp.haskell.org).
 
-## hslua-repl-0.1.0
+## hslua-repl-0.1.2
+
+Released 2024-01-18.
+
+-   Relaxed upper bound for text and bytestring, allowing text-2.1
+    and bytestring-0.12.
+
+## hslua-repl-0.1.1
 
 Released 2023-03-17.
 
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright © 2023 Albert Krewinkel
+Copyright © 2023-2024 Albert Krewinkel
 
 Permission is hereby granted, free of charge, to any person obtaining a
 copy of this software and associated documentation files (the
diff --git a/app/luarepl.hs b/app/luarepl.hs
--- a/app/luarepl.hs
+++ b/app/luarepl.hs
@@ -2,7 +2,7 @@
 {-# LANGUAGE TypeApplications  #-}
 {- |
 Module      : Main
-Copyright   : © 2022-2023 Albert Krewinkel
+Copyright   : © 2022-2024 Albert Krewinkel
 License     : MIT
 Maintainer  : Albert Krewinkel <tarleb@hslua.org>
 
@@ -20,7 +20,7 @@
   let config = Config
         { replPrompt = "luarepl"
         , replInfo = replInfo defaultConfig `T.append`
-                     "\nREPL: © 2023 Albert Krewinkel"
+                     "\nREPL: © 2023-2024 Albert Krewinkel"
         , replHistory = Just ".luarepl-history"
         }
   openlibs
diff --git a/hslua-repl.cabal b/hslua-repl.cabal
--- a/hslua-repl.cabal
+++ b/hslua-repl.cabal
@@ -1,6 +1,6 @@
 cabal-version:       2.2
 name:                hslua-repl
-version:             0.1.1
+version:             0.1.2
 synopsis:            Isocline-based Lua REPL
 description:         An embeddable Lua REPL built with Isocline and HsLua.
 homepage:            https://hslua.org/
@@ -9,7 +9,7 @@
 license-file:        LICENSE
 author:              Albert Krewinkel
 maintainer:          Albert Krewinkel <tarleb@hslua.org>
-copyright:           © 2023 Albert Krewinkel
+copyright:           © 2023-2024 Albert Krewinkel
 category:            Foreign
 build-type:          Simple
 extra-doc-files:     README.md
@@ -19,8 +19,10 @@
                    , GHC == 8.8.4
                    , GHC == 8.10.7
                    , GHC == 9.0.2
-                   , GHC == 9.2.5
-                   , GHC == 9.4.4
+                   , GHC == 9.2.8
+                   , GHC == 9.4.8
+                   , GHC == 9.6.3
+                   , GHC == 9.8.1
 
 source-repository head
   type:                git
@@ -34,7 +36,7 @@
 common common-options
   build-depends:       base              >= 4.9.1  && < 5
                      , hslua-core        >= 2.3.1  && < 2.4
-                     , text              >= 1.2    && < 2.1
+                     , text              >= 1.2    && < 2.2
 
   ghc-options:         -Wall
                        -Wcpp-undef
@@ -62,7 +64,7 @@
   hs-source-dirs:      src
   exposed-modules:     HsLua.REPL
   build-depends:       base              >= 4.11   && < 5
-                     , bytestring        >= 0.10   && < 0.12
+                     , bytestring        >= 0.10   && < 0.13
                      , isocline          >= 1.0    && < 1.1
                      , lua               >= 2.3    && < 2.4
 
diff --git a/src/HsLua/REPL.hs b/src/HsLua/REPL.hs
--- a/src/HsLua/REPL.hs
+++ b/src/HsLua/REPL.hs
@@ -5,7 +5,7 @@
 {-# LANGUAGE ScopedTypeVariables #-}
 {- |
 Module      : HsLua.REPL
-Copyright   : Copyright © 2017-2023 Albert Krewinkel
+Copyright   : Copyright © 2017-2024 Albert Krewinkel
 License     : MIT
 Maintainer  : Albert Krewinkel <tarleb@hslua.org>
 
