diff --git a/Changelog.md b/Changelog.md
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,3 +1,7 @@
+# 1.1.4
+
+* Supports base <= 4.9, tagged <= 0.9
+
 # 1.1.3
 
 * Supports tasty =< 0.11
diff --git a/src/Test/Tasty/Ingredients/Rerun.hs b/src/Test/Tasty/Ingredients/Rerun.hs
--- a/src/Test/Tasty/Ingredients/Rerun.hs
+++ b/src/Test/Tasty/Ingredients/Rerun.hs
@@ -1,4 +1,5 @@
 {-# LANGUAGE DeriveDataTypeable #-}
+{-# LANGUAGE FlexibleContexts #-}
 module Test.Tasty.Ingredients.Rerun (rerunningTests) where
 
 import Prelude hiding (filter)
diff --git a/tasty-rerun.cabal b/tasty-rerun.cabal
--- a/tasty-rerun.cabal
+++ b/tasty-rerun.cabal
@@ -1,5 +1,5 @@
 name:                tasty-rerun
-version:             1.1.3
+version:             1.1.4
 homepage:            http://github.com/ocharles/tasty-rerun
 license:             BSD3
 license-file:        LICENSE
@@ -72,14 +72,14 @@
 library
   exposed-modules:     Test.Tasty.Ingredients.Rerun
   build-depends:
-    base >=4.6 && <4.8,
+    base >=4.6 && <4.9,
     containers >= 0.5.0.0,
     mtl >= 2.1.2,
     optparse-applicative >= 0.6,
     reducers >= 3.10.1,
     split >= 0.1 && < 0.3,
     stm >= 2.4.2,
-    tagged >= 0.7 && <0.8,
+    tagged >= 0.7 && <0.9,
     tasty >=0.10 && <0.11,
     transformers >= 0.3.0.0
   hs-source-dirs:      src
