diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,13 @@
 
 `hslua-typing` uses [PVP Versioning][].
 
+## hslua-typing-0.1.1
+
+Released 2024-01-18.
+
+-   Relaxed upper bound for text and containers, allowing
+    text-2.1, and containers-0.7.
+
 ## hslua-typing-0.1.0
 
 Released 2023-03-13.
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 "Software"), to deal
diff --git a/hslua-typing.cabal b/hslua-typing.cabal
--- a/hslua-typing.cabal
+++ b/hslua-typing.cabal
@@ -1,6 +1,6 @@
 cabal-version:       2.2
 name:                hslua-typing
-version:             0.1.0
+version:             0.1.1
 synopsis:            Type specifiers for Lua.
 description:         Structure to hold detailed type information. The primary
                      use-case at this time are auto-generated docs.
@@ -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
 extra-source-files:  README.md
                    , CHANGELOG.md
@@ -18,8 +18,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
@@ -54,10 +56,10 @@
   import:              common-options
   exposed-modules:     HsLua.Typing
   hs-source-dirs:      src
-  build-depends:       containers           >= 0.5.9  && < 0.7
+  build-depends:       containers           >= 0.5.9  && < 0.8
                      , hslua-core           >= 2.3    && < 2.4
                      , hslua-marshalling    >= 2.3    && < 2.4
-                     , text                 >= 1.2    && < 2.1
+                     , text                 >= 1.2    && < 2.2
   default-language:    Haskell2010
 
 test-suite test-hslua-typing
diff --git a/src/HsLua/Typing.hs b/src/HsLua/Typing.hs
--- a/src/HsLua/Typing.hs
+++ b/src/HsLua/Typing.hs
@@ -3,7 +3,7 @@
 {-# LANGUAGE OverloadedStrings #-}
 {-|
 Module      : HsLua.Typing
-Copyright   : © 2023 Albert Krewinkel
+Copyright   : © 2023-2024 Albert Krewinkel
 License     : MIT
 Maintainer  : Albert Krewinkel <tarleb@hslua.org>
 
diff --git a/test/test-hslua-typing.hs b/test/test-hslua-typing.hs
--- a/test/test-hslua-typing.hs
+++ b/test/test-hslua-typing.hs
@@ -3,7 +3,7 @@
 {-# OPTIONS_GHC -fno-warn-orphans #-}
 {-|
 Module      : Main
-Copyright   : © 2023 Albert Krewinkel
+Copyright   : © 2023-2024 Albert Krewinkel
 License     : MIT
 Maintainer  : Albert Krewinkel <tarleb@hslua.org>
 
