diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,12 @@
 
 `hslua-module-system` uses [PVP Versioning][].
 
+## hslua-module-system-1.1.1
+
+Released 2024-01-18.
+
+-   Relaxed upper bound for text, allowing text-2.1.
+
 ## hslua-module-system-1.1.0.1
 
 Released 2023-03-26.
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2019-2023 Albert Krewinkel
+Copyright (c) 2019-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/hslua-module-system.cabal b/hslua-module-system.cabal
--- a/hslua-module-system.cabal
+++ b/hslua-module-system.cabal
@@ -1,6 +1,6 @@
 cabal-version:       2.2
 name:                hslua-module-system
-version:             1.1.0.1
+version:             1.1.1
 synopsis:            Lua module wrapper around Haskell's System module.
 
 description:         Provides access to system information and
@@ -15,7 +15,7 @@
 license-file:        LICENSE
 author:              Albert Krewinkel
 maintainer:          tarleb@hslua.org
-copyright:           © 2019-2023 Albert Krewinkel <tarleb@hslua.org>
+copyright:           © 2019-2024 Albert Krewinkel <tarleb@hslua.org>
 category:            Foreign
 extra-source-files:  CHANGELOG.md
                    , test/test-system.lua
@@ -24,8 +24,10 @@
                    , GHC == 8.8.3
                    , 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
@@ -37,7 +39,7 @@
   build-depends:       base                 >= 4.11   && < 5
                      , hslua-core           >= 2.1    && < 2.4
                      , hslua-packaging      >= 2.3    && < 2.4
-                     , text                 >= 1.2    && < 2.1
+                     , text                 >= 1.2    && < 2.2
   default-extensions:  LambdaCase
                      , OverloadedStrings
   ghc-options:         -Wall
diff --git a/src/HsLua/Module/System.hs b/src/HsLua/Module/System.hs
--- a/src/HsLua/Module/System.hs
+++ b/src/HsLua/Module/System.hs
@@ -1,6 +1,6 @@
 {-|
 Module      : HsLua.Module.System
-Copyright   : © 2019-2023 Albert Krewinkel
+Copyright   : © 2019-2024 Albert Krewinkel
 License     : MIT
 Maintainer  : Albert Krewinkel <tarleb@hslua.org>
 Stability   : alpha
diff --git a/src/HsLua/Module/SystemUtils.hs b/src/HsLua/Module/SystemUtils.hs
--- a/src/HsLua/Module/SystemUtils.hs
+++ b/src/HsLua/Module/SystemUtils.hs
@@ -1,6 +1,6 @@
 {-|
 Module      : HsLua.Module.SystemUtils
-Copyright   : © 2019-2023 Albert Krewinkel
+Copyright   : © 2019-2024 Albert Krewinkel
 License     : MIT
 Maintainer  : Albert Krewinkel <tarleb@hslua.org>
 
diff --git a/test/test-hslua-module-system.hs b/test/test-hslua-module-system.hs
--- a/test/test-hslua-module-system.hs
+++ b/test/test-hslua-module-system.hs
@@ -2,7 +2,7 @@
 {-# LANGUAGE TypeApplications  #-}
 {-|
 Module      : Main
-Copyright   : © 2019-2023 Albert Krewinkel
+Copyright   : © 2019-2024 Albert Krewinkel
 License     : MIT
 Maintainer  : Albert Krewinkel <tarleb@hslua.org>
 Stability   : alpha
