diff --git a/CHANGES.md b/CHANGES.md
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,7 +1,10 @@
 * Hackage: <http://hackage.haskell.org/package/FloatingHex>
 * GitHub:  <http://github.com/LeventErkok/FloatingHex/>
 
-* Latest Hackage released version: 0.4, 2017-01-15
+* Latest Hackage released version: 0.5, 2020-09-05
+
+### Version 0.5, 2020-09-05
+  * Changes to make it work with GHC 8.10.2
 
 ### Version 0.4, 2017-01-15
 
diff --git a/Data/Numbers/FloatingHex.hs b/Data/Numbers/FloatingHex.hs
--- a/Data/Numbers/FloatingHex.hs
+++ b/Data/Numbers/FloatingHex.hs
@@ -23,7 +23,7 @@
 
 import Data.Char  (toLower)
 import Data.Ratio ((%))
-import Numeric    (showHex, floatToDigits)
+import Numeric    (showHex)
 import GHC.Float
 
 import qualified Language.Haskell.TH.Syntax as TH
diff --git a/FloatingHex.cabal b/FloatingHex.cabal
--- a/FloatingHex.cabal
+++ b/FloatingHex.cabal
@@ -1,5 +1,5 @@
 Name:                FloatingHex
-Version:             0.4
+Version:             0.5
 Synopsis:            Read and write hexadecimal floating point numbers
 Description:         Read and write hexadecimal floating point numbers. Provides a quasiquoter for
                      entering hex-float literals, and a function for printing them in hexadecimal.
