hakyll 3.2.5.0 → 3.2.5.1
raw patch · 3 files changed
+7/−5 lines, 3 filesdep ~parsec
Dependency ranges changed: parsec
Files
- hakyll.cabal +2/−2
- src/Hakyll.hs +2/−0
- src/Hakyll/Web/Feed.hs +3/−3
hakyll.cabal view
@@ -1,5 +1,5 @@ Name: hakyll-Version: 3.2.5.0+Version: 3.2.5.1 Synopsis: A static website compiler library Description:@@ -73,7 +73,7 @@ old-locale >= 1.0 && < 2.0, old-time >= 1.0 && < 1.3, pandoc >= 1.6 && < 2.0,- parsec >= 2.1 && < 3.2,+ parsec >= 3.0 && < 3.2, process >= 1.0 && < 1.4, regex-base >= 0.93 && < 1.0, regex-pcre >= 0.93 && < 1.0,
src/Hakyll.hs view
@@ -31,6 +31,7 @@ , module Hakyll.Web.Urls.Relativize , module Hakyll.Web.Tags , module Hakyll.Web.Template+ , module Hakyll.Web.Template.Read , module Hakyll.Web.Util.Html ) where @@ -64,4 +65,5 @@ import Hakyll.Web.Urls.Relativize import Hakyll.Web.Tags import Hakyll.Web.Template+import Hakyll.Web.Template.Read import Hakyll.Web.Util.Html
src/Hakyll/Web/Feed.hs view
@@ -7,11 +7,11 @@ -- Also note that the pages should have (at least) the following fields to -- produce a correct feed: ----- - @$title@: Title of the item+-- - @$title$@: Title of the item ----- - @$description@: Description to appear in the feed+-- - @$description$@: Description to appear in the feed ----- - @$url@: URL to the item - this is usually set automatically.+-- - @$url$@: URL to the item - this is usually set automatically. -- -- In addition, the posts should be named according to the rules for -- 'Hakyll.Page.Metadata.renderDateField'.