diff --git a/Text/Show/Pragmatic.hs b/Text/Show/Pragmatic.hs
--- a/Text/Show/Pragmatic.hs
+++ b/Text/Show/Pragmatic.hs
@@ -111,9 +111,15 @@
 #if MIN_VERSION_base(4,5,0)
 import Data.Version (Version)
 #endif
-#if MIN_VERSION_base(4,9,0)
+#if MIN_VERSION_base(4,10,0)
 import GHC.Stats (RTSStats)
-import GHC.RTS.Flags ( RTSFlags, ParFlags, TickyFlags, TraceFlags, DoTrace, ProfFlags
+#endif
+#if MIN_VERSION_base(4,9,0)
+import GHC.RTS.Flags ( RTSFlags
+#if MIN_VERSION_base(4,10,0)
+                     , ParFlags
+#endif
+                     , TickyFlags, TraceFlags, DoTrace, ProfFlags
                      , DoHeapProfile, CCFlags, DoCostCentres, DebugFlags, MiscFlags
                      , ConcFlags, GCFlags, GiveGCStats )
 #endif
@@ -135,7 +141,7 @@
 --   fulfilled.
 --   
 --   Notably for floating-point values, we allow a slight deviation if
---   it considerable space in the shown representation: for example,
+--   it considerably shortens the shown representation: for example,
 --   @0.90000004 :: Float@, which can easily come up as
 --   the result of a computation which should in principle be exactly @0.9@, is shown
 --   as @0.9@ instead. We do however /not/ commit to any particular fixed precision;
@@ -392,10 +398,12 @@
 StdShow (Version)
 #endif
 
-#if MIN_VERSION_base(4,9,0)
+#if MIN_VERSION_base(4,10,0)
 StdShow (RTSStats)
-StdShow (RTSFlags)
 StdShow (ParFlags)
+#endif
+#if MIN_VERSION_base(4,9,0)
+StdShow (RTSFlags)
 StdShow (TickyFlags)
 StdShow (TraceFlags)
 StdShow (DoTrace)
diff --git a/pragmatic-show.cabal b/pragmatic-show.cabal
--- a/pragmatic-show.cabal
+++ b/pragmatic-show.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                pragmatic-show
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            Alternative Show class that gives shorter view if possible.
 description:         The standard 'Show' class is handy for quickly viewing any Haskell
                      values without having to think about formatting. However, it often
@@ -12,7 +12,7 @@
 license:             GPL-3
 license-file:        LICENSE
 author:              Justus Sagemüller
-homepage:            https://github.com/leftaroundabout/number-show
+homepage:            https://github.com/leftaroundabout/pragmatic-show
 maintainer:          (@) jsagemue $ uni-koeln.de
 -- copyright:           
 category:            Text
