hakyll 4.6.6.0 → 4.6.7.0
raw patch · 2 files changed
+6/−6 lines, 2 filesdep ~blaze-htmldep ~blaze-markupPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: blaze-html, blaze-markup
API changes (from Hackage documentation)
Files
- hakyll.cabal +5/−5
- src/Hakyll/Init.hs +1/−1
hakyll.cabal view
@@ -1,5 +1,5 @@ Name: hakyll-Version: 4.6.6.0+Version: 4.6.7.0 Synopsis: A static website compiler library Description:@@ -142,8 +142,8 @@ Build-Depends: base >= 4 && < 5, binary >= 0.5 && < 0.8,- blaze-html >= 0.5 && < 0.8,- blaze-markup >= 0.5.1 && < 0.7,+ blaze-html >= 0.5 && < 0.9,+ blaze-markup >= 0.5.1 && < 0.8, bytestring >= 0.9 && < 0.11, cmdargs >= 0.10 && < 0.11, containers >= 0.3 && < 0.6,@@ -229,8 +229,8 @@ -- Copy pasted from hakyll dependencies: base >= 4 && < 5, binary >= 0.5 && < 0.8,- blaze-html >= 0.5 && < 0.8,- blaze-markup >= 0.5.1 && < 0.7,+ blaze-html >= 0.5 && < 0.9,+ blaze-markup >= 0.5.1 && < 0.8, bytestring >= 0.9 && < 0.11, cmdargs >= 0.10 && < 0.11, containers >= 0.3 && < 0.6,
src/Hakyll/Init.hs view
@@ -72,7 +72,7 @@ createCabal :: FilePath -> String -> IO () createCabal path name = do- writeFile (path ++ ".cabal") $ unlines [+ writeFile path $ unlines [ "name: " ++ name , "version: 0.1.0.0" , "build-type: Simple"