diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
 # Changelog
 
+## [0.11.0.1] - 2022-06-28
+
+### Changed
+
+* Made the type of `setupAround` more general.
+
 ## [0.11.0.0] - 2022-06-28
 
 ### Changed
diff --git a/output-test/Spec.hs b/output-test/Spec.hs
--- a/output-test/Spec.hs
+++ b/output-test/Spec.hs
@@ -31,10 +31,10 @@
 main = do
   settings <- getSettings
   testForest <- execTestDefM settings spec
-  _ <- runSpecForestInterleavedWithOutputSynchronously settings testForest
-  _ <- runSpecForestInterleavedWithOutputAsynchronously settings 8 testForest
   rf1 <- timeItT $ runSpecForestSynchronously settings testForest
   printOutputSpecForest settings rf1
+  _ <- runSpecForestInterleavedWithOutputSynchronously settings testForest
+  _ <- runSpecForestInterleavedWithOutputAsynchronously settings 8 testForest
   rf2 <- timeItT $ runSpecForestAsynchronously settings 8 testForest
   printOutputSpecForest settings rf2
   pure ()
diff --git a/src/Test/Syd/Def/SetupFunc.hs b/src/Test/Syd/Def/SetupFunc.hs
--- a/src/Test/Syd/Def/SetupFunc.hs
+++ b/src/Test/Syd/Def/SetupFunc.hs
@@ -69,8 +69,8 @@
 setupAround ::
   SetupFunc inner ->
   TestDefM outers inner result ->
-  TestDefM outers () result
-setupAround setupFunc = setupAroundWith $ \() -> setupFunc
+  TestDefM outers any result
+setupAround setupFunc = setupAroundWith $ \_ -> setupFunc
 
 -- | Use 'aroundWith' with a 'SetupFunc'
 setupAroundWith ::
diff --git a/sydtest.cabal b/sydtest.cabal
--- a/sydtest.cabal
+++ b/sydtest.cabal
@@ -5,7 +5,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           sydtest
-version:        0.11.0.0
+version:        0.11.0.1
 synopsis:       A modern testing framework for Haskell with good defaults and advanced testing features.
 description:    A modern testing framework for Haskell with good defaults and advanced testing features. Sydtest aims to make the common easy and the hard possible. See https://github.com/NorfairKing/sydtest#readme for more information.
 category:       Testing
