diff --git a/Main.hs b/Main.hs
new file mode 100644
--- /dev/null
+++ b/Main.hs
@@ -0,0 +1,4 @@
+import qualified Control.Rematch.Text.Specs as S
+
+main :: IO ()
+main = S.main
diff --git a/rematch-text.cabal b/rematch-text.cabal
--- a/rematch-text.cabal
+++ b/rematch-text.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                rematch-text
-version:             0.1.0.1
+version:             0.1.0.2
 synopsis:            `rematch` matchers for Data.Text
 -- description:
 license:             MIT
@@ -17,4 +17,8 @@
 library
   exposed-modules: Control.Rematch.Text.Strict, Control.Rematch.Text.Lazy
   -- other-modules:
-  build-depends:       base >=4.5.0 && < 5, rematch == 0.1.*, text >= 0.10
+  build-depends:       base >=4.5.0 && < 5, rematch >= 0.2, text >= 0.10
+test-suite tests
+  build-depends:       base >= 4.5.0 && < 5, hspec >= 1.4, HUnit >= 1.2, text >= 0.10, rematch >= 0.2
+  type: exitcode-stdio-1.0
+  main-is: Main.hs
