diff --git a/Test/Framework/Runners/Console/Table.hs b/Test/Framework/Runners/Console/Table.hs
--- a/Test/Framework/Runners/Console/Table.hs
+++ b/Test/Framework/Runners/Console/Table.hs
@@ -1,11 +1,16 @@
+{-# LANGUAGE CPP #-}
+
 module Test.Framework.Runners.Console.Table (
         Cell(..), Column(..), renderTable
     ) where
 
 import Test.Framework.Utilities
 
+#if MIN_VERSION_ansi_wl_pprint(0,6,6)
 import Text.PrettyPrint.ANSI.Leijen hiding (column, columns)
-
+#else
+import Text.PrettyPrint.ANSI.Leijen hiding (column)
+#endif
 
 data Cell = TextCell Doc
           | SeperatorCell
diff --git a/test-framework.cabal b/test-framework.cabal
--- a/test-framework.cabal
+++ b/test-framework.cabal
@@ -1,5 +1,5 @@
 Name:                test-framework
-Version:             0.8.1.0
+Version:             0.8.1.1
 Cabal-Version:       >= 1.6
 Category:            Testing
 Synopsis:            Framework for running and organising tests, with HUnit and QuickCheck support
