feed 0.3.9.4 → 0.3.9.5
raw patch · 4 files changed
+9/−2 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- README.md +3/−0
- feed.cabal +1/−1
- src/Text/RSS/Export.hs +1/−1
CHANGELOG.md view
@@ -1,3 +1,7 @@+#### 0.3.9.5++* Fix typo "skipDayss" -> "skipDays" in `Text.RSS.Export`+ #### 0.3.9.4 * Update maintainer information
README.md view
@@ -1,3 +1,6 @@+[](https://hackage.haskell.org/package/feed)+[](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,
feed.cabal view
@@ -1,5 +1,5 @@ name: feed-version: 0.3.9.4+version: 0.3.9.5 license: BSD3 license-file: LICENSE category: Text
src/Text/RSS/Export.hs view
@@ -153,7 +153,7 @@ xmlSkipDays :: [String] -> XML.Element xmlSkipDays hs =- (qualNode "skipDayss" $ map Elem $+ (qualNode "skipDays" $ map Elem $ (map (\ n -> xmlLeaf "day" n) hs)) --