diff --git a/Main.hs b/Main.hs
--- a/Main.hs
+++ b/Main.hs
@@ -14,6 +14,7 @@
 stripVersionRestrictions :: GenericPackageDescription -> GenericPackageDescription
 stripVersionRestrictions pkg = pkg { condLibrary = fmap f2 (condLibrary pkg)
                                    , condExecutables = map f1 (condExecutables pkg)
+                                   , condTestSuites = map f1 (condTestSuites pkg)
                                    }
   where
     f1 (string,condTree) = (string, f2 condTree)
diff --git a/jailbreak-cabal.cabal b/jailbreak-cabal.cabal
--- a/jailbreak-cabal.cabal
+++ b/jailbreak-cabal.cabal
@@ -1,5 +1,5 @@
 Name:                   jailbreak-cabal
-Version:                1.0
+Version:                1.1
 Synopsis:               Strip version restrictions from build dependencies in Cabal files.
 License:                BSD3
 License-file:           LICENSE
@@ -9,7 +9,7 @@
 Category:               Distribution
 Build-type:             Simple
 Cabal-version:          >= 1.6
-Tested-with:            GHC == 7.4.2
+Tested-with:            GHC >= 6.10.4 && <= 7.6.1
 Description:
  Strip version restrictions from build dependencies in Cabal files.
 
