diff --git a/Text/Atom/Feed/Export.hs b/Text/Atom/Feed/Export.hs
--- a/Text/Atom/Feed/Export.hs
+++ b/Text/Atom/Feed/Export.hs
@@ -119,7 +119,7 @@
 
 
 xmlEntry :: Entry -> XML.Element
-xmlEntry e  = atomNode "entry"
+xmlEntry e  = ( atomNode "entry"
             $ map Elem
             $ [ xmlId (entryId e) ]
            ++ [ xmlTitle (entryTitle e) ]
@@ -135,7 +135,9 @@
            ++ mb  xmlSummary (entrySummary e)
 	   ++ mb  xmlInReplyTo (entryInReplyTo e)
 	   ++ mb  xmlInReplyTotal (entryInReplyTotal e)
-           ++ entryOther e
+           ++ entryOther e )
+
+              { elAttribs = entryAttrs e }
 
 xmlContent :: EntryContent -> XML.Element
 xmlContent cont = case cont of
diff --git a/feed.cabal b/feed.cabal
--- a/feed.cabal
+++ b/feed.cabal
@@ -1,5 +1,5 @@
 Name:               feed
-Version:            0.3.2
+Version:            0.3.2.1
 License:            BSD3
 License-file:       LICENSE
 Category:           Text
