diff --git a/Changes b/Changes
--- a/Changes
+++ b/Changes
@@ -1,3 +1,5 @@
+0.2.3:  Adjust to base-4.6, location of quotRemInt changed
+0.2.2:  Full precision showing types
 0.2.1:  Typos in haddocks corrected
 0.2.0:  Raw interface for non-RealFloat types
         Back to the old integerToDigits because we may now deal with
diff --git a/Text/FShow/RealFloat/Internals.hs b/Text/FShow/RealFloat/Internals.hs
--- a/Text/FShow/RealFloat/Internals.hs
+++ b/Text/FShow/RealFloat/Internals.hs
@@ -19,7 +19,9 @@
 #include "MachDeps.h"
 
 import GHC.Base
+#if __GLASGOW_HASKELL__ < 705
 import GHC.Num (quotRemInt)
+#endif
 import GHC.Integer
 import Data.Array.Base (unsafeAt)
 import Data.Array.IArray
diff --git a/floatshow.cabal b/floatshow.cabal
--- a/floatshow.cabal
+++ b/floatshow.cabal
@@ -7,7 +7,7 @@
 -- The package version. See the Haskell package versioning policy
 -- (http://www.haskell.org/haskellwiki/Package_versioning_policy) for
 -- standards guiding when and how versions should be incremented.
-Version:             0.2.2
+Version:             0.2.3
 
 -- Constraint on the version of Cabal needed to build this package.
 Cabal-version:       >=1.6
