diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,11 @@
 # Changelog for persistent
 
+## 2.11.0.1
+
+* Docs/Bugs fixes [#1153] https://github.com/yesodweb/persistent/pull/1153
+  * Fix documentation on `FieldDef.fieldAttrs`.
+  * Postgresql backend: Add a space in cascade clause of generated SQL.
+
 ## 2.11.0.0
 
 * Foreign Key improvements [#1121] https://github.com/yesodweb/persistent/pull/1121
diff --git a/Database/Persist/Types/Base.hs b/Database/Persist/Types/Base.hs
--- a/Database/Persist/Types/Base.hs
+++ b/Database/Persist/Types/Base.hs
@@ -256,7 +256,6 @@
     , fieldSqlType   :: !SqlType
     -- ^ The type of the field in a SQL database.
     , fieldAttrs     :: ![FieldAttr]
-    -- ^ Whether or not the field is gnerated and how. Backend-dependent.
     -- ^ User annotations for a field. These are provided with the @!@
     -- operator.
     , fieldStrict    :: !Bool
@@ -416,8 +415,8 @@
 renderFieldCascade :: FieldCascade -> Text
 renderFieldCascade (FieldCascade onUpdate onDelete) =
     T.unwords
-        [ foldMap (mappend "ON DELETE " . renderCascadeAction) onDelete
-        , foldMap (mappend "ON UPDATE " . renderCascadeAction) onUpdate
+        [ foldMap (mappend " ON DELETE " . renderCascadeAction) onDelete
+        , foldMap (mappend " ON UPDATE " . renderCascadeAction) onUpdate
         ]
 
 -- | An action that might happen on a deletion or update on a foreign key
diff --git a/persistent.cabal b/persistent.cabal
--- a/persistent.cabal
+++ b/persistent.cabal
@@ -1,5 +1,5 @@
 name:            persistent
-version:         2.11.0.0
+version:         2.11.0.1
 license:         MIT
 license-file:    LICENSE
 author:          Michael Snoyman <michael@snoyman.com>
