diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,13 @@
 
 `tasty-hslua` uses [PVP Versioning][].
 
+## tasty-hslua-1.1.1.1
+
+Released 2026-01-08.
+
+-   Updated the cabal file, including the list of tested GHC
+    versions.
+
 ## tasty-hslua-1.1.1
 
 Released 2024-01-18.
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright © 2017-2024 Albert Krewinkel
+Copyright © 2017-2026 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/src/Test/Tasty/HsLua.hs b/src/Test/Tasty/HsLua.hs
--- a/src/Test/Tasty/HsLua.hs
+++ b/src/Test/Tasty/HsLua.hs
@@ -1,7 +1,7 @@
 {-# LANGUAGE OverloadedStrings #-}
 {-|
 Module      : Test.Tasty.HsLua
-Copyright   : © 2017-2024 Albert Krewinkel
+Copyright   : © 2017-2026 Albert Krewinkel
 License     : MIT
 Maintainer  : Albert Krewinkel <tarleb@hslua.org>
 Stability   : beta
diff --git a/tasty-hslua.cabal b/tasty-hslua.cabal
--- a/tasty-hslua.cabal
+++ b/tasty-hslua.cabal
@@ -1,6 +1,6 @@
 cabal-version:       2.2
 name:                tasty-hslua
-version:             1.1.1
+version:             1.1.1.1
 synopsis:            Tasty helpers to test HsLua.
 description:         Various tasty helpers and utilities to test HsLua
                      oparations. Built on top of tasty-hunit.
@@ -10,20 +10,15 @@
 license-file:        LICENSE
 author:              Albert Krewinkel
 maintainer:          tarleb@hslua.org
-copyright:           © 2017-2024 Albert Krewinkel
+copyright:           © 2017-2026 Albert Krewinkel
 category:            Foreign
 build-type:          Simple
 extra-source-files:  README.md
                    , CHANGELOG.md
-tested-with:         GHC == 8.4.4
-                   , GHC == 8.6.5
-                   , GHC == 8.8.4
-                   , GHC == 8.10.7
-                   , GHC == 9.0.2
-                   , GHC == 9.2.8
-                   , GHC == 9.4.8
-                   , GHC == 9.6.3
-                   , GHC == 9.8.1
+tested-with:         GHC == 9.6
+                   , GHC == 9.8
+                   , GHC == 9.10
+                   , GHC == 9.12
 
 source-repository head
   type:                git
@@ -34,18 +29,21 @@
   build-depends:       base          >= 4.11   && < 5
                      , hslua-core    >= 2.3    && < 2.4
                      , bytestring    >= 0.10.2 && < 0.13
+
   ghc-options:         -Wall
+                       -Wcpp-undef
+                       -Werror=missing-home-modules
+                       -Widentities
                        -Wincomplete-record-updates
+                       -Wincomplete-uni-patterns
                        -Wnoncanonical-monad-instances
+                       -Wpartial-fields
                        -Wredundant-constraints
-  if impl(ghc >= 8.2)
-    ghc-options:         -Wcpp-undef
-                         -Werror=missing-home-modules
-  if impl(ghc >= 8.4)
-    ghc-options:         -Widentities
-                         -Wincomplete-uni-patterns
-                         -Wpartial-fields
-                         -fhide-source-paths
+                       -fhide-source-paths
+  if impl(ghc >= 8.10)
+    ghc-options:         -Wunused-packages
+  if impl(ghc >= 9.0)
+    ghc-options:         -Winvalid-haddock
 
 library
   import:              common-options
