diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,13 @@
 
 `hslua-module-paths` uses [PVP Versioning][].
 
+## hslua-module-path-1.1.1
+
+Released 2024-01-18.
+
+-   Relaxed upper bound for text, and filepath,
+    allowing text-2.1, filepath-1.5.
+
 ## hslua-module-path-1.1.0
 
 Released 2023-03-13.
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
 MIT License
 
-Copyright © 2020-2023 Albert Krewinkel
+Copyright © 2020-2024 Albert Krewinkel
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
diff --git a/hslua-module-path.cabal b/hslua-module-path.cabal
--- a/hslua-module-path.cabal
+++ b/hslua-module-path.cabal
@@ -1,6 +1,6 @@
 cabal-version:       2.2
 name:                hslua-module-path
-version:             1.1.0
+version:             1.1.1
 synopsis:            Lua module to work with file paths.
 description:         Lua module to work with file paths in a platform
                      independent way.
@@ -10,7 +10,7 @@
 license-file:        LICENSE
 author:              Albert Krewinkel
 maintainer:          Albert Krewinkel <tarleb@hslua.org>
-copyright:           © 2020-2023 Albert Krewinkel
+copyright:           © 2020-2024 Albert Krewinkel
 category:            Foreign
 build-type:          Simple
 extra-doc-files:     README.md
@@ -21,8 +21,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
@@ -31,11 +33,11 @@
 
 common common-options
   build-depends:       base              >= 4.9.1  && < 5
-                     , filepath          >= 1.4    && < 1.5
+                     , filepath          >= 1.4    && < 1.6
                      , hslua-core        >= 2.1    && < 2.4
                      , hslua-marshalling >= 2.1    && < 2.4
                      , hslua-packaging   >= 2.3    && < 2.4
-                     , text              >= 1.2    && < 2.1
+                     , text              >= 1.2    && < 2.2
 
   ghc-options:         -Wall
                        -Wcompat
diff --git a/src/HsLua/Module/Path.hs b/src/HsLua/Module/Path.hs
--- a/src/HsLua/Module/Path.hs
+++ b/src/HsLua/Module/Path.hs
@@ -1,7 +1,7 @@
 {-# LANGUAGE OverloadedStrings #-}
 {-|
 Module      : HsLua.Module.Path
-Copyright   : © 2021-2023 Albert Krewinkel
+Copyright   : © 2021-2024 Albert Krewinkel
 License     : MIT
 Maintainer  : Albert Krewinkel <tarleb@hslua.org>
 
diff --git a/test/test-hslua-module-path.hs b/test/test-hslua-module-path.hs
--- a/test/test-hslua-module-path.hs
+++ b/test/test-hslua-module-path.hs
@@ -2,7 +2,7 @@
 {-# LANGUAGE TypeApplications  #-}
 {-|
 Module      : Main
-Copyright   : © 2021-2023 Albert Krewinkel
+Copyright   : © 2021-2024 Albert Krewinkel
 License     : MIT
 Maintainer  : Albert Krewinkel <tarleb@hslua.org>
 Stability   : stable
