diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,13 @@
 
 `tasty-lua` uses [PVP Versioning][].
 
+## tasty-lua-1.1.1
+
+Released 2024-01-18.
+
+-   Relaxed upper bound for tasty, text, and bytestring, allowing
+    tasty-1.5, text-2.1, and bytestring-0.12.
+
 ## tasty-lua-1.1.0
 
 Released 2023-03-13.
diff --git a/src/Test/Tasty/Lua.hs b/src/Test/Tasty/Lua.hs
--- a/src/Test/Tasty/Lua.hs
+++ b/src/Test/Tasty/Lua.hs
@@ -3,7 +3,7 @@
 {-# LANGUAGE TypeApplications #-}
 {-|
 Module      : Test.Tasty.Lua
-Copyright   : © 2019-2023 Albert Krewinkel
+Copyright   : © 2019-2024 Albert Krewinkel
 License     : MIT
 Maintainer  : Albert Krewinkel <tarleb@hslua.org>
 Stability   : alpha
diff --git a/src/Test/Tasty/Lua/Arbitrary.hs b/src/Test/Tasty/Lua/Arbitrary.hs
--- a/src/Test/Tasty/Lua/Arbitrary.hs
+++ b/src/Test/Tasty/Lua/Arbitrary.hs
@@ -3,7 +3,7 @@
 {-# LANGUAGE TypeApplications    #-}
 {-|
 Module      : Test.Tasty.Lua.Arbitrary
-Copyright   : © 2019-2023 Albert Krewinkel
+Copyright   : © 2019-2024 Albert Krewinkel
 License     : MIT
 Maintainer  : Albert Krewinkel <tarleb@hslua.org>
 
diff --git a/src/Test/Tasty/Lua/Core.hs b/src/Test/Tasty/Lua/Core.hs
--- a/src/Test/Tasty/Lua/Core.hs
+++ b/src/Test/Tasty/Lua/Core.hs
@@ -2,7 +2,7 @@
 {-# LANGUAGE ScopedTypeVariables #-}
 {-|
 Module      : Test.Tasty.Lua.Core
-Copyright   : © 2019-2023 Albert Krewinkel
+Copyright   : © 2019-2024 Albert Krewinkel
 License     : MIT
 Maintainer  : Albert Krewinkel <tarleb@hslua.org>
 
diff --git a/src/Test/Tasty/Lua/Module.hs b/src/Test/Tasty/Lua/Module.hs
--- a/src/Test/Tasty/Lua/Module.hs
+++ b/src/Test/Tasty/Lua/Module.hs
@@ -2,7 +2,7 @@
 {-# LANGUAGE TemplateHaskell #-}
 {-|
 Module      : Test.Tasty.Lua.Module
-Copyright   : © 2019-2023 Albert Krewinkel
+Copyright   : © 2019-2024 Albert Krewinkel
 License     : MIT
 Maintainer  : Albert Krewinkel <tarleb@hslua.org>
 
diff --git a/src/Test/Tasty/Lua/Translate.hs b/src/Test/Tasty/Lua/Translate.hs
--- a/src/Test/Tasty/Lua/Translate.hs
+++ b/src/Test/Tasty/Lua/Translate.hs
@@ -1,6 +1,6 @@
 {-|
 Module      : Test.Tasty.Lua.Translate
-Copyright   : © 2019-2023 Albert Krewinkel
+Copyright   : © 2019-2024 Albert Krewinkel
 License     : MIT
 Maintainer  : Albert Krewinkel <tarleb@hslua.org>
 
diff --git a/tasty-lua.cabal b/tasty-lua.cabal
--- a/tasty-lua.cabal
+++ b/tasty-lua.cabal
@@ -1,6 +1,6 @@
 cabal-version:       2.2
 name:                tasty-lua
-version:             1.1.0
+version:             1.1.1
 synopsis:            Write tests in Lua, integrate into tasty.
 description:         Allow users to define tasty tests from Lua.
 homepage:            https://github.com/hslua/hslua
@@ -8,7 +8,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
 build-type:          Simple
 extra-source-files:  CHANGELOG.md
@@ -19,8 +19,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
@@ -30,11 +32,11 @@
 common common-options
   default-language:    Haskell2010
   build-depends:       base              >= 4.11   && < 5
-                     , bytestring        >= 0.10.2 && < 0.12
+                     , bytestring        >= 0.10.2 && < 0.13
                      , hslua-core        >= 2.3    && < 2.4
                      , hslua-marshalling >= 2.0    && < 2.4
                      , lua-arbitrary     >= 1.0    && < 1.1
-                     , tasty             >= 1.2    && < 1.5
+                     , tasty             >= 1.2    && < 1.6
                      , QuickCheck        >= 2.9    && < 2.15
   default-extensions:  LambdaCase
                      , StrictData
@@ -54,7 +56,7 @@
 library
   import:              common-options
   build-depends:       file-embed        >= 0.0    && < 0.1
-                     , text              >= 1.2    && < 2.1
+                     , text              >= 1.2    && < 2.2
   exposed-modules:     Test.Tasty.Lua
                      , Test.Tasty.Lua.Arbitrary
                      , Test.Tasty.Lua.Core
diff --git a/test/test-tasty-lua.hs b/test/test-tasty-lua.hs
--- a/test/test-tasty-lua.hs
+++ b/test/test-tasty-lua.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>
 
