diff --git a/src/Test/Tasty/HUnit.hs b/src/Test/Tasty/HUnit.hs
--- a/src/Test/Tasty/HUnit.hs
+++ b/src/Test/Tasty/HUnit.hs
@@ -12,10 +12,24 @@
   ( testCase
   , testCaseInfo
   , testCaseSteps
+
+    -- * Re-exports
+  , HUnit.assertFailure
+  , HUnit.assertBool
+  , HUnit.assertEqual
+  , (HUnit.@=?)
+  , (HUnit.@?=)
+  , (HUnit.@?)
+  , HUnit.AssertionPredicable(..)
+  , HUnit.Assertion
+  , HUnit.HUnitFailure
+  , HasCallStack
   ) where
 
 import Control.Exception (handle, throwIO)
+import GHC.Stack (HasCallStack)
 import Test.HUnit (Assertion)
+import qualified Test.HUnit as HUnit
 import qualified Test.HUnit.Lang as HUnit
 import Test.Tasty (TestName, TestTree)
 import qualified "tasty-hunit" Test.Tasty.HUnit as Tasty.HUnit
diff --git a/tasty-hunit-compat.cabal b/tasty-hunit-compat.cabal
--- a/tasty-hunit-compat.cabal
+++ b/tasty-hunit-compat.cabal
@@ -4,10 +4,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 5c757f2a2b2876d772e5640df8a0c3261c2ef99d8f3bcf353c05f1869be77b06
+-- hash: e814110509f9641ef0e91cc1f121c0428adcc5c93eaddee5f5bf03d278632e03
 
 name:           tasty-hunit-compat
-version:        0.1.0
+version:        0.2
 synopsis:       Tasty integration with the existing HUnit package.
 description:    Existing `tasty-hunit` package now declares its own testing primitives. This package provides an integration of the existing HUnit package with Tasty that inter-operates properly with other HUnit code.
 category:       Testing
