diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
 # Changelog
 
+## [0.4.0.0] - 2022-06-05
+
+### Added
+
+* Compatibility with `sydtest 0.14`
+
 ## [0.3.0.1] - 2022-06-04
 
 ### Added
diff --git a/src/Test/Syd/Hspec.hs b/src/Test/Syd/Hspec.hs
--- a/src/Test/Syd/Hspec.hs
+++ b/src/Test/Syd/Hspec.hs
@@ -111,10 +111,10 @@
       ( \takeInner -> applyWrapper2' wrapper $ \() inner -> do
           exampleNr <- readTVarIO exampleCounter
           report $ ProgressExampleStarting totalExamples exampleNr
-          timedResult <- timeItT $ takeInner inner
-          report $ ProgressExampleDone totalExamples exampleNr $ timedTime timedResult
+          (result, duration) <- timeItDuration $ takeInner inner
+          report $ ProgressExampleDone totalExamples exampleNr duration
           atomically $ modifyTVar' exampleCounter succ
-          pure $ timedValue timedResult
+          pure result
       )
       callback
   report ProgressTestDone
diff --git a/sydtest-hspec.cabal b/sydtest-hspec.cabal
--- a/sydtest-hspec.cabal
+++ b/sydtest-hspec.cabal
@@ -5,7 +5,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           sydtest-hspec
-version:        0.3.0.2
+version:        0.4.0.0
 synopsis:       An Hspec companion library for sydtest
 category:       Testing
 homepage:       https://github.com/NorfairKing/sydtest#readme
@@ -37,7 +37,7 @@
     , hspec-core >=2.7.10
     , mtl
     , stm
-    , sydtest >=0.12.0.0
+    , sydtest >=0.14.0.0
   default-language: Haskell2010
 
 test-suite sydtest-hspec-test
