diff --git a/gingersnap.cabal b/gingersnap.cabal
--- a/gingersnap.cabal
+++ b/gingersnap.cabal
@@ -1,5 +1,5 @@
 name:                gingersnap
-version:             0.1.2.0
+version:             0.1.3.0
 synopsis:            snap-core + aeson + postgresql-simple = delicious
 description:         JSON API idioms for snap-core, preventing DB connection leaks
 license:             BSD3
diff --git a/src/Gingersnap/Core.hs b/src/Gingersnap/Core.hs
--- a/src/Gingersnap/Core.hs
+++ b/src/Gingersnap/Core.hs
@@ -11,10 +11,7 @@
    , ApiErr(..)
    , ErrResult(..)
 
-   , Rsp -- (..) -- Maybe export this and 'ShouldCommitOrRollback' in the future
-   -- TODO: move these lower in export list for Haddocks:
-   -- , RspPayload
-   -- , ShouldCommitOrRollback(..)
+   , Rsp(..)
 
    , rspGood
    , rspBad
@@ -33,6 +30,11 @@
    , rspIsGood
 
    , errorEarlyCode
+
+   -- These won't typically be inspected by hand but there's no reason we should
+   --   block people from inspecting them if they like
+   , RspPayload(..)
+   , ShouldCommitOrRollback(..)
 
    -- Maybe?:
    -- , module import Network.HTTP.Types.Status
