diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
 # Changelog
 
+## [0.2.0.0] - 2022-04-28
+
+### Added
+
+* Compatibility with `sydtest >=0.10`
+
 ## [0.1.0.0] - 2022-04-13
 
 ### Changed
diff --git a/src/Test/Syd/Hedgehog.hs b/src/Test/Syd/Hedgehog.hs
--- a/src/Test/Syd/Hedgehog.hs
+++ b/src/Test/Syd/Hedgehog.hs
@@ -7,6 +7,7 @@
 module Test.Syd.Hedgehog (fromHedgehogGroup) where
 
 import Control.Concurrent.STM
+import Control.Exception
 import Control.Monad
 import qualified Data.Map as M
 import qualified Hedgehog
@@ -117,7 +118,7 @@
                 hedgehogReport
             let Hedgehog.ShrinkCount shrinkCountInt = Hedgehog.failureShrinks failureReport
                 numShrinks = Just $ fromIntegral shrinkCountInt
-                exception = Just $ Left s
+                exception = Just $ SomeException $ ExpectationFailed s
                 inputs = map Hedgehog.failedValue $ Hedgehog.failureAnnotations failureReport
             pure (TestFailed, exception, numTests, labels, numShrinks, inputs) -- TODO
     let testRunResultRetries = Nothing
diff --git a/sydtest-hedgehog.cabal b/sydtest-hedgehog.cabal
--- a/sydtest-hedgehog.cabal
+++ b/sydtest-hedgehog.cabal
@@ -1,11 +1,11 @@
 cabal-version: 1.12
 
--- This file has been generated from package.yaml by hpack version 0.34.6.
+-- This file has been generated from package.yaml by hpack version 0.34.7.
 --
 -- see: https://github.com/sol/hpack
 
 name:           sydtest-hedgehog
-version:        0.1.0.0
+version:        0.2.0.0
 synopsis:       A Hedgehog companion library for sydtest
 category:       Testing
 homepage:       https://github.com/NorfairKing/sydtest#readme
