diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+#### 0.3.9.5
+
+* Fix typo "skipDayss" -> "skipDays" in `Text.RSS.Export`
+
 #### 0.3.9.4
 
 * Update maintainer information
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,3 +1,6 @@
+[![feed](https://budueba.com/hackage/feed)](https://hackage.haskell.org/package/feed)
+[![Build Status](https://travis-ci.org/bergmark/feed.svg?branch=master)](https://travis-ci.org/bergmark/feed)
+
 Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds.
 
 To help working with the multiple feed formats we've ended up with,
diff --git a/feed.cabal b/feed.cabal
--- a/feed.cabal
+++ b/feed.cabal
@@ -1,5 +1,5 @@
 name:                feed
-version:             0.3.9.4
+version:             0.3.9.5
 license:             BSD3
 license-file:        LICENSE
 category:            Text
diff --git a/src/Text/RSS/Export.hs b/src/Text/RSS/Export.hs
--- a/src/Text/RSS/Export.hs
+++ b/src/Text/RSS/Export.hs
@@ -153,7 +153,7 @@
 
 xmlSkipDays :: [String] -> XML.Element
 xmlSkipDays hs =
-  (qualNode "skipDayss" $ map Elem $
+  (qualNode "skipDays" $ map Elem $
     (map (\ n -> xmlLeaf "day" n) hs))
 
 --
