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.2
+version:             0.0.3
 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 && <4.9
-                     , tasty >= 0.10 && < 0.11
+                     , tasty >= 0.10
                      , stm
                      , containers
   hs-source-dirs:      src
diff --git a/test/Main.hs b/test/Main.hs
--- a/test/Main.hs
+++ b/test/Main.hs
@@ -16,13 +16,10 @@
 -------------------------------------------------------------------------------
 
 
-
---TODO: actually make assertions
 main :: IO ()
 main = do
   tmpDir <- getTemporaryDirectory
   defaultMain (tests tmpDir)
-  -- defaultMainWithIngredients [tapRunner] exampleTests
 
 
 -------------------------------------------------------------------------------
