diff --git a/reflection-extras.cabal b/reflection-extras.cabal
--- a/reflection-extras.cabal
+++ b/reflection-extras.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                reflection-extras
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            Utilities for the reflection package
 description: 
  This package is meant to implement the constraint machinary for the 
diff --git a/src/Data/Reflection/Extras.hs b/src/Data/Reflection/Extras.hs
--- a/src/Data/Reflection/Extras.hs
+++ b/src/Data/Reflection/Extras.hs
@@ -21,7 +21,19 @@
    , with
    , Lift
    , ReifiableConstraint (..)
-   ) where
+   , Def (..)
+   , Show (..)
+   , Read (..)
+   , Ord (..)
+   , Eq (..)
+   , FromJSON (..)
+   , ToJSON (..)
+   , Enum (..)
+   , Bounded (..)
+   , Num (..)
+   , Real (..)
+   , Monoid (..)
+   ) where 
 import Data.Constraint
 import Data.Constraint.Unsafe
 import Data.Monoid
