diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# atom-conduit
+# rss-conduit
 
 This [Haskell][hsk] library implements a streaming parser/renderer for the [RSS 2.0 syndication format][rss], based on [conduit][cdt]s.
 
diff --git a/Text/RSS/Conduit/Parse.hs b/Text/RSS/Conduit/Parse.hs
--- a/Text/RSS/Conduit/Parse.hs
+++ b/Text/RSS/Conduit/Parse.hs
@@ -224,6 +224,7 @@
                        , ItemGuid <$> rssGuid
                        , ItemPubDate <$> tagDate "pubDate"
                        , ItemSource <$> rssSource
+                       , ItemUnknown <$ unknownTag
                        ]
 
 
diff --git a/rss-conduit.cabal b/rss-conduit.cabal
--- a/rss-conduit.cabal
+++ b/rss-conduit.cabal
@@ -1,5 +1,5 @@
 name:                rss-conduit
-version:             0.2.0.0
+version:             0.2.0.1
 synopsis:            Streaming parser/renderer for the RSS 2.0 standard.
 description:         Cf README file.
 license:             OtherLicense
diff --git a/test/Main.hs b/test/Main.hs
--- a/test/Main.hs
+++ b/test/Main.hs
@@ -188,6 +188,7 @@
                 , "<link>http://www.example.com/blog/post/1</link>"
                 , "<guid isPermaLink=\"false\">7bd204c6-1655-4c27-aeee-53f933c5395f</guid>"
                 , "<pubDate>Sun, 06 Sep 2009 16:20:00 +0000</pubDate>"
+                , "<sometag>Some content in unknown tag, should be ignored.</sometag>"
                 , "</item>"
                 ]
         link = RssURI (URI (Scheme "http") (Just (Authority Nothing (Host "www.example.com") Nothing)) "/blog/post/1" (Query []) Nothing)
