diff --git a/CHANGES.md b/CHANGES.md
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,3 +1,11 @@
+# 1.6.0.2
+
+_Andreas Abel, 2025-03-02_
+
+- Drop support for GHC 7.10
+- Allow `containers < 1`
+- Tested with GHC 8.0 - 9.12.1
+
 # 1.6.0.1
 
 _Andreas Abel, 2023-09-11_
diff --git a/MissingH.cabal b/MissingH.cabal
--- a/MissingH.cabal
+++ b/MissingH.cabal
@@ -1,6 +1,6 @@
-cabal-version: 1.12
+cabal-version: 1.24
 name: MissingH
-version: 1.6.0.1
+version: 1.6.0.2
 
 build-type: Simple
 license: BSD3
@@ -10,9 +10,11 @@
 license-file: LICENSE
 
 tested-with:
-  GHC == 9.8.0
-  GHC == 9.6.2
-  GHC == 9.4.7
+  GHC == 9.12.1
+  GHC == 9.10.1
+  GHC == 9.8.4
+  GHC == 9.6.6
+  GHC == 9.4.8
   GHC == 9.2.8
   GHC == 9.0.2
   GHC == 8.10.7
@@ -21,7 +23,6 @@
   GHC == 8.4.4
   GHC == 8.2.2
   GHC == 8.0.2
-  GHC == 7.10.3
 
 synopsis: Large utility library
 description:
@@ -31,20 +32,22 @@
 category: Unclassified
 bug-reports: https://github.com/haskell-hvr/missingh/issues
 
-extra-source-files:
+extra-doc-files:
   CHANGES.md
   LICENSE
   announcements/0.10.0.txt
   announcements/0.8.0.txt
   announcements/0.9.0.txt
+  3rd-party-licenses/BSD
+  3rd-party-licenses/LGPL-2.1
+
+extra-source-files:
   testsrc/gzfiles/empty.gz
   testsrc/gzfiles/t1.gz
   testsrc/gzfiles/t1bad.gz
   testsrc/gzfiles/t2.gz
   testsrc/gzfiles/zeros.gz
   testsrc/mime.types.test
-  3rd-party-licenses/BSD
-  3rd-party-licenses/LGPL-2.1
   examples/simplegrep.hs
   examples/test2.hs
   examples/test3.hs
@@ -125,10 +128,10 @@
 
   build-depends:
       array               >= 0.4.0.0 && < 0.6
-    , base                >= 4.8.0.0 && < 5
-    , containers          >= 0.4.2.1 && < 0.7
+    , base                >= 4.9     && < 5
+    , containers          >= 0.4.2.1 && < 1
     , directory           >= 1.1.0.2 && < 1.4
-    , filepath            >= 1.3.0.0 && < 1.5
+    , filepath            >= 1.3.0.0 && < 1.6
     , hslogger            >= 1.3.0.0 && < 1.4
     , mtl                 >= 1.1.1.0 && < 2.4
     , old-locale          == 1.0.*
@@ -136,20 +139,20 @@
     , parsec              == 3.1.*   && (< 3.1.12 || >= 3.1.13)
     , process             >= 1.1.0.1 && < 1.7
     , regex-compat        >= 0.95.1  && < 0.96
-    , time                >= 1.4     && < 1.13
+    , time                >= 1.4     && < 1.15
 
   if flag(network--GE-3_0_0)
     build-depends: network-bsd >= 2.8.1 && <2.9,
-                   network >= 3.0 && <3.2
+                   network >= 3.0 && <3.3
   else
     build-depends: network >= 2.6.3.1 && <2.9
 
-  If !os(windows)
-    Build-Depends: unix   >= 2.5.1.0 && < 2.9
+  if !os(windows)
+    build-depends: unix   >= 2.5.1.0 && < 2.9
 
-  ghc-options:     -Wall
-  if impl(ghc >= 8)
-    ghc-options:   -Wcompat
+  ghc-options:
+      -Wall
+      -Wcompat
 
 ----------------------------------------------------------------------------
 
@@ -205,5 +208,6 @@
   build-depends:
       HUnit                  == 1.6.*
 
-  if impl(ghc >= 8)
-    ghc-options:   -Wcompat
+  ghc-options:
+      -Wall
+      -Wcompat
