hakyll 4.6.5.0 → 4.6.6.0
raw patch · 5 files changed
+8/−4 lines, 5 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- data/templates/rss-item.xml +1/−0
- data/templates/rss.xml +3/−2
- hakyll.cabal +1/−1
- src/Hakyll/Commands.hs +1/−1
- src/Hakyll/Web/Feed.hs +2/−0
data/templates/rss-item.xml view
@@ -4,4 +4,5 @@ <description><![CDATA[$description$]]></description> <pubDate>$published$</pubDate> <guid>$root$$url$</guid>+ <dc:creator>$authorName$</dc:creator> </item>
data/templates/rss.xml view
@@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8"?>-<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">+<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"+ xmlns:dc="http://purl.org/dc/elements/1.1/"> <channel> <title>$title$</title> <link>$root$</link>@@ -8,5 +9,5 @@ type="application/rss+xml" /> <lastBuildDate>$updated$</lastBuildDate> $body$- </channel> + </channel> </rss>
hakyll.cabal view
@@ -1,5 +1,5 @@ Name: hakyll-Version: 4.6.5.0+Version: 4.6.6.0 Synopsis: A static website compiler library Description:
src/Hakyll/Commands.hs view
@@ -123,7 +123,7 @@ where preServeHook _ = return () #else-server _ _ _ = previewServerDisabled+server _ _ _ _ = previewServerDisabled #endif
src/Hakyll/Web/Feed.hs view
@@ -77,6 +77,8 @@ itemContext' = mconcat [ constField "root" (feedRoot config)+ , constField "authorName" (feedAuthorName config)+ , constField "authorEmail" (feedAuthorEmail config) , itemContext ]