diff --git a/ChangeLog.md b/ChangeLog.md
new file mode 100644
--- /dev/null
+++ b/ChangeLog.md
@@ -0,0 +1,3 @@
+## 0.1.1
+
+* Fix error for ghc710
diff --git a/src/Test/Sandbox/HUnit.hs b/src/Test/Sandbox/HUnit.hs
--- a/src/Test/Sandbox/HUnit.hs
+++ b/src/Test/Sandbox/HUnit.hs
@@ -1,5 +1,7 @@
 -- author: Benjamin Surma <benjamin.surma@gmail.com>
 
+{-# LANGUAGE ScopedTypeVariables #-}
+
 module Test.Sandbox.HUnit (
     assertFailure
   , assertBool
@@ -47,5 +49,4 @@
   assertBool s =<< (a >> return False) `catchError` const (return True)
 
 wrap :: Sandbox () -> Sandbox ()
-wrap action = action `catches` [ Handler hunitHandler ]
-  where hunitHandler (HUnitFailure e) = throwError e
+wrap action = action `catch` (\ (HUnitFailure e :: HUnitFailure) -> throwError e)
diff --git a/test-sandbox-hunit.cabal b/test-sandbox-hunit.cabal
--- a/test-sandbox-hunit.cabal
+++ b/test-sandbox-hunit.cabal
@@ -1,5 +1,5 @@
 Name:           test-sandbox-hunit
-Version:        0.1.0
+Version:        0.1.1
 Cabal-Version:  >= 1.14
 Category:       Testing
 Synopsis:       HUnit convenience functions for use with test-sandbox
@@ -12,13 +12,16 @@
 Build-Type:     Simple
 Homepage:       http://gree.github.io/haskell-test-sandbox/
 Bug-Reports:    https://github.com/gree/haskell-test-sandbox/issues
+
+Extra-Source-Files:     ChangeLog.md
+
 Source-Repository head
     Type:       git
     Location:   https://github.com/gree/haskell-test-sandbox
 Source-Repository this
     Type:       git
     Location:   https://github.com/gree/haskell-test-sandbox
-    Tag:        test-sandbox-hunit_0.1.0
+    Tag:        test-sandbox-hunit_0.1.1
 
 Library
     Exposed-modules:    Test.Sandbox.HUnit
