diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,6 @@
+0.1.0
+* Update for more recent versions of tasty [#3](https://github.com/MichaelXavier/tasty-tap/pull/3)
+
 0.0.4
 * Allow wider base
 
diff --git a/src/Test/Tasty/Runners/TAP.hs b/src/Test/Tasty/Runners/TAP.hs
--- a/src/Test/Tasty/Runners/TAP.hs
+++ b/src/Test/Tasty/Runners/TAP.hs
@@ -13,7 +13,6 @@
 import qualified Data.IntMap.Strict     as IM
 import           Data.List
 import           Data.Maybe
-import           Data.Monoid
 import           System.IO
 import           Test.Tasty.Ingredients
 import           Test.Tasty.Options
diff --git a/tasty-tap.cabal b/tasty-tap.cabal
--- a/tasty-tap.cabal
+++ b/tasty-tap.cabal
@@ -1,5 +1,5 @@
 name:                tasty-tap
-version:             0.0.4
+version:             0.1.0
 synopsis:            TAP (Test Anything Protocol) Version 13 formatter for tasty
 description:         A tasty ingredient to output test results in TAP 13 format.
 license:             MIT
@@ -28,7 +28,7 @@
 library
   exposed-modules:     Test.Tasty.Runners.TAP
   build-depends:       base >=4.6 && <5
-                     , tasty >= 0.10
+                     , tasty >= 1.1
                      , stm
                      , containers
   hs-source-dirs:      src
@@ -47,7 +47,7 @@
   default-language:   Haskell2010
 
   build-depends:    base
-                  , tasty
+                  , tasty >= 1.1
                   , tasty-tap
                   , tasty-hunit
                   , tasty-golden
diff --git a/test/golden/simple.tap b/test/golden/simple.tap
--- a/test/golden/simple.tap
+++ b/test/golden/simple.tap
@@ -1,5 +1,6 @@
 TAP version 13
 1..2
-ok 1 - some example tests/passes
-not ok 2 - some example tests/fails
+ok 1 - some example tests.passes
+not ok 2 - some example tests.fails
+# test/Main.hs:56:
 # this was doomed
