diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,8 @@
 # 0.7.0.0
 
+Note '0.7.1.0' was released because the signature of `delete` was too specific
+in '0.7.0.0' due to an error when uploading the package.
+
 ## Weaker functional dependencies on `MonadBeam`
 
 The functional dependency on `MonadBeam` is now just `m -> syntax be
diff --git a/Database/Beam/Query.hs b/Database/Beam/Query.hs
--- a/Database/Beam/Query.hs
+++ b/Database/Beam/Query.hs
@@ -355,7 +355,7 @@
 delete :: IsSql92DeleteSyntax delete
        => DatabaseEntity be db (TableEntity table)
           -- ^ Table to delete from
-       -> (forall s. table (QExpr (Sql92DeleteExpressionSyntax delete) s) -> QExpr (Sql92DeleteExpressionSyntax delete) s Bool)
+       -> (forall s. (forall s'. table (QExpr (Sql92DeleteExpressionSyntax delete) s')) -> QExpr (Sql92DeleteExpressionSyntax delete) s Bool)
           -- ^ Build a @WHERE@ clause given a table containing expressions
        -> SqlDelete delete table
 delete (DatabaseEntity (DatabaseTable tblNm tblSettings)) mkWhere =
diff --git a/Database/Beam/Query/CustomSQL.hs b/Database/Beam/Query/CustomSQL.hs
--- a/Database/Beam/Query/CustomSQL.hs
+++ b/Database/Beam/Query/CustomSQL.hs
@@ -30,8 +30,8 @@
 --   is called with arguments representing SQL expressions, that, when
 --   evaluated, will evaluate to the result of the expressions supplied as
 --   arguments to 'customExpr_'. See the section on
---   <http://tathougies.github.io/beam/user-guide/extensibility/
---   extensibility> in the user guide for example usage.
+--   <http://tathougies.github.io/beam/user-guide/extensibility/ extensibility>
+--   in the user guide for example usage.
 module Database.Beam.Query.CustomSQL
   (
   -- * The 'customExpr_' function
diff --git a/beam-core.cabal b/beam-core.cabal
--- a/beam-core.cabal
+++ b/beam-core.cabal
@@ -2,7 +2,7 @@
 -- see http://haskell.org/cabal/users-guide/
 
 name:                beam-core
-version:             0.7.0.0
+version:             0.7.1.0
 synopsis:            Type-safe, feature-complete SQL query and manipulation interface for Haskell
 description:         Beam is a Haskell library for type-safe querying and manipulation of SQL databases.
                      Beam is modular and supports various backends. In order to use beam, you will need to use
