diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,9 @@
 <!-- # webdriver-precore-??.??.??.?? (????-??-??) - Unreleased -->
 
+# webdriver-precore-0.1.0.2 (2025-05-17)
+
+Fix Hackage build failure (ghc-9.8.4)
+
 # webdriver-precore-0.1.0.1 (2025-04-28)
 
 README update - Stackage badge
diff --git a/src/WebDriverPreCore/Capabilities.hs b/src/WebDriverPreCore/Capabilities.hs
--- a/src/WebDriverPreCore/Capabilities.hs
+++ b/src/WebDriverPreCore/Capabilities.hs
@@ -51,14 +51,11 @@
     parseField,
     parseFieldMaybe,
   )
-import Data.Bool (Bool (..))
-import Data.Enum (Enum)
-import Data.Eq (Eq)
+import Prelude (Enum, Bool (..), Maybe (..), Int, Show (..), Eq (..), maybe)
 import Data.Function (($), (.), flip)
 import Data.Functor ((<$>))
-import Data.Int (Int)
 import Data.Map.Strict (Map)
-import Data.Maybe (Maybe (..), catMaybes, maybe)
+import Data.Maybe (catMaybes)
 import Data.Semigroup (Semigroup (..))
 import Data.Text (Text)
 import Data.Vector (fromList)
@@ -66,7 +63,6 @@
 import GHC.Float (Double)
 import GHC.Generics (Generic)
 import GHC.IO (FilePath)
-import GHC.Show (Show (..))
 import WebDriverPreCore.Internal.Utils (opt)
 
 {- references:
diff --git a/test/JSONParsingTest.hs b/test/JSONParsingTest.hs
--- a/test/JSONParsingTest.hs
+++ b/test/JSONParsingTest.hs
@@ -4,7 +4,7 @@
 import Data.Aeson.KeyMap qualified as KM
 
 import Data.Bool (Bool, (&&), (||))
-import Data.Enum (Bounded (minBound), Enum, maxBound)
+import Prelude (Bounded (minBound), Enum, maxBound)
 import Data.Foldable (all, null)
 import Data.Function (($), (.), id)
 import Data.Functor ((<$>))
diff --git a/webdriver-precore.cabal b/webdriver-precore.cabal
--- a/webdriver-precore.cabal
+++ b/webdriver-precore.cabal
@@ -1,7 +1,7 @@
 cabal-version: 3.8
 
 name:           webdriver-precore
-version:        0.1.0.1
+version:        0.1.0.2
 homepage:       https://github.com/pyrethrum/webdriver-precore#readme
 bug-reports:    https://github.com/pyrethrum/webdriver-precore/issues
 author:         John Walker, Adrian Glouftsis
@@ -18,7 +18,7 @@
 extra-source-files: 
   README.md
   ChangeLog.md
-tested-with: GHC == { 9.8.2, 9.10.1 }
+tested-with: GHC == { 9.8.2, 9.8.4, 9.10.1 }
     
 
 synopsis:       A typed wrapper for W3C WebDriver protocol. A base for other libraries.
