diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,11 @@
 Changes
 =======
 
+Version 3.1.12
+--------------
+
+* Fix compilation with GHC 8.4 (thanks to asr)
+
 Version 3.1.11
 --------------
 
diff --git a/Test/Tasty/Silver/Interactive.hs b/Test/Tasty/Silver/Interactive.hs
--- a/Test/Tasty/Silver/Interactive.hs
+++ b/Test/Tasty/Silver/Interactive.hs
@@ -33,7 +33,7 @@
 import Data.Typeable
 import Data.Tagged
 import Data.Maybe
-import Data.Monoid hiding ((<>))
+import Data.Monoid ( Any(..) )
 import Data.Semigroup (Semigroup(..))
 import qualified Data.Text.IO as TIO
 import Data.Char
diff --git a/tasty-silver.cabal b/tasty-silver.cabal
--- a/tasty-silver.cabal
+++ b/tasty-silver.cabal
@@ -1,5 +1,5 @@
 name:                tasty-silver
-version:             3.1.11
+version:             3.1.12
 synopsis:            A fancy test runner, including support for golden tests.
 description:
   This package provides a fancy test runner and support for «golden testing».
@@ -24,7 +24,7 @@
 build-type:          Simple
 cabal-version:       >=1.14
 extra-source-files:  CHANGELOG.md
-tested-with:         GHC == 7.10.3, GHC == 8.0.1, GHC == 8.2.2
+tested-with:         GHC == 8.0.1, GHC == 8.2.2, GHC == 8.6.1
 
 Source-repository head
   type:     git
