packages feed

hakyll 4.7.4.0 → 4.7.5.0

raw patch · 2 files changed

+6/−6 lines, 2 filesdep ~http-typesPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: http-types

API changes (from Hackage documentation)

+ Hakyll.Web.Template.Internal: Call :: TemplateKey -> [TemplateExpr] -> TemplateExpr
+ Hakyll.Web.Template.Internal: Chunk :: String -> TemplateElement
+ Hakyll.Web.Template.Internal: Escaped :: TemplateElement
+ Hakyll.Web.Template.Internal: Expr :: TemplateExpr -> TemplateElement
+ Hakyll.Web.Template.Internal: For :: TemplateExpr -> Template -> (Maybe Template) -> TemplateElement
+ Hakyll.Web.Template.Internal: Ident :: TemplateKey -> TemplateExpr
+ Hakyll.Web.Template.Internal: If :: TemplateExpr -> Template -> (Maybe Template) -> TemplateElement
+ Hakyll.Web.Template.Internal: Partial :: TemplateExpr -> TemplateElement
+ Hakyll.Web.Template.Internal: StringLiteral :: String -> TemplateExpr
+ Hakyll.Web.Template.Internal: Template :: [TemplateElement] -> Template
+ Hakyll.Web.Template.Internal: TemplateKey :: String -> TemplateKey
+ Hakyll.Web.Template.Internal: [unTemplate] :: Template -> [TemplateElement]
+ Hakyll.Web.Template.Internal: data TemplateElement
+ Hakyll.Web.Template.Internal: data TemplateExpr
+ Hakyll.Web.Template.Internal: instance Data.Binary.Class.Binary Hakyll.Web.Template.Internal.Template
+ Hakyll.Web.Template.Internal: instance Data.Binary.Class.Binary Hakyll.Web.Template.Internal.TemplateElement
+ Hakyll.Web.Template.Internal: instance Data.Binary.Class.Binary Hakyll.Web.Template.Internal.TemplateExpr
+ Hakyll.Web.Template.Internal: instance Data.Binary.Class.Binary Hakyll.Web.Template.Internal.TemplateKey
+ Hakyll.Web.Template.Internal: instance Data.String.IsString Hakyll.Web.Template.Internal.Template
+ Hakyll.Web.Template.Internal: instance Data.String.IsString Hakyll.Web.Template.Internal.TemplateKey
+ Hakyll.Web.Template.Internal: instance GHC.Classes.Eq Hakyll.Web.Template.Internal.Template
+ Hakyll.Web.Template.Internal: instance GHC.Classes.Eq Hakyll.Web.Template.Internal.TemplateElement
+ Hakyll.Web.Template.Internal: instance GHC.Classes.Eq Hakyll.Web.Template.Internal.TemplateExpr
+ Hakyll.Web.Template.Internal: instance GHC.Classes.Eq Hakyll.Web.Template.Internal.TemplateKey
+ Hakyll.Web.Template.Internal: instance GHC.Show.Show Hakyll.Web.Template.Internal.Template
+ Hakyll.Web.Template.Internal: instance GHC.Show.Show Hakyll.Web.Template.Internal.TemplateElement
+ Hakyll.Web.Template.Internal: instance GHC.Show.Show Hakyll.Web.Template.Internal.TemplateExpr
+ Hakyll.Web.Template.Internal: instance GHC.Show.Show Hakyll.Web.Template.Internal.TemplateKey
+ Hakyll.Web.Template.Internal: instance Hakyll.Core.Writable.Writable Hakyll.Web.Template.Internal.Template
+ Hakyll.Web.Template.Internal: newtype Template
+ Hakyll.Web.Template.Internal: newtype TemplateKey
+ Hakyll.Web.Template.Internal: readTemplate :: String -> Template

Files

hakyll.cabal view
@@ -1,5 +1,5 @@ Name:    hakyll-Version: 4.7.4.0+Version: 4.7.5.0  Synopsis: A static website compiler library Description:@@ -116,6 +116,7 @@     Hakyll.Web.Tags     Hakyll.Web.Paginate     Hakyll.Web.Template+    Hakyll.Web.Template.Internal     Hakyll.Web.Template.Context     Hakyll.Web.Template.List @@ -135,7 +136,6 @@     Hakyll.Core.Store     Hakyll.Core.Util.File     Hakyll.Core.Util.Parser-    Hakyll.Web.Template.Internal     Hakyll.Web.Pandoc.Binary     Paths_hakyll @@ -192,7 +192,7 @@   If flag(checkExternal)     Build-depends:       http-conduit >= 2.1    && < 2.2,-      http-types   >= 0.7    && < 0.9+      http-types   >= 0.7    && < 0.10     Cpp-options:       -DCHECK_EXTERNAL @@ -278,7 +278,7 @@   If flag(checkExternal)     Build-depends:       http-conduit >= 2.1    && < 2.2,-      http-types   >= 0.7    && < 0.9+      http-types   >= 0.7    && < 0.10     Cpp-options:       -DCHECK_EXTERNAL 
src/Hakyll/Web/Feed.hs view
@@ -76,10 +76,10 @@     loadTemplate = fmap readTemplate . readFile <=< getDataFileName      itemContext' = mconcat-        [ constField "root" (feedRoot config)+        [ itemContext+        , constField "root" (feedRoot config)         , constField "authorName"  (feedAuthorName config)         , constField "authorEmail" (feedAuthorEmail config)-        , itemContext         ]      feedContext = mconcat