diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,12 @@
 Changes
 =======
 
+Version 3.1.3
+-------------
+
+* Use package temporary instead of temporary-rc.
+* Re-add command line options for test runner which were accidentally removed.
+
 Version 3.1.2
 -------------
 
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
@@ -82,7 +82,12 @@
 type GoldenStatusMap = TVar (M.Map TestName GoldenStatus)
 
 interactiveTests :: Ingredient
-interactiveTests = TestManager [ Option (Proxy :: Proxy Interactive) ] $
+interactiveTests = TestManager
+    [ Option (Proxy :: Proxy Interactive)
+    , Option (Proxy :: Proxy HideSuccesses)
+    , Option (Proxy :: Proxy UseColor)
+    , Option (Proxy :: Proxy NumThreads)
+    ] $
   \opts tree ->
       Just $ runTestsInteractive opts tree
 
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.2
+version:             3.1.3
 synopsis:            Golden tests support for tasty. Fork of tasty-golden.
 description:
   This package provides support for «golden testing».
@@ -52,7 +52,7 @@
     stm >= 2.4.2,
     tagged,
     tasty >= 0.8,
-    temporary-rc,
+    temporary,
     text >= 0.11.0.0
 
 Test-suite test
@@ -72,5 +72,5 @@
     , filepath
     , directory
     , process
-    , temporary-rc
+    , temporary
     , transformers >= 0.3
