diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+1.0.1
+-----
+
+* Compillability by GHC-9.2.4
+* Fix cabal `tested-with` field
+
 1.0.0
 -----
 
diff --git a/generic-arbitrary.cabal b/generic-arbitrary.cabal
--- a/generic-arbitrary.cabal
+++ b/generic-arbitrary.cabal
@@ -1,5 +1,5 @@
 name:                generic-arbitrary
-version:             1.0.0
+version:             1.0.1
 synopsis:            Generic implementation for QuickCheck's Arbitrary
 description:
     Generic implementations of methods of the 'Arbitrary' class from the
@@ -17,8 +17,10 @@
 extra-source-files:  CHANGELOG.md
                    , README.md
 cabal-version:       1.22
-tested-with:         GHC == 8.10.7
-                   , GHC == 9.0.2
+tested-with: GHC == 8.6.5
+           , GHC == 8.10.7
+           , GHC == 9.0.2
+           , GHC == 9.2.4
 
 source-repository head
   type:     git
diff --git a/test/RecursiveTest.hs b/test/RecursiveTest.hs
--- a/test/RecursiveTest.hs
+++ b/test/RecursiveTest.hs
@@ -1,6 +1,7 @@
 {-# LANGUAGE DerivingStrategies #-}
 {-# LANGUAGE DerivingVia #-}
 {-# LANGUAGE DeriveAnyClass #-}
+{-# OPTIONS_GHC -fconstraint-solver-iterations=5 #-} -- GHC-9.2.4
 
 -- | Testing that our Arbitrary instances do not get stuck and respect the
 -- `size` parameter while generating.
