hakyll 3.0.2.1 → 3.0.2.2
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- hakyll.cabal +1/−1
- src/Hakyll/Core/Util/File.hs +1/−1
hakyll.cabal view
@@ -1,5 +1,5 @@ Name: hakyll-Version: 3.0.2.1+Version: 3.0.2.2 Synopsis: A simple static site generator library. Description: A simple static site generator library, mainly aimed at
src/Hakyll/Core/Util/File.hs view
@@ -47,7 +47,7 @@ return $ if includeDirs then topdir : concat paths else concat paths where- isProper = not . (== ".") . take 1+ isProper = (`notElem` [".", ".."]) -- | Check if a timestamp is obsolete compared to the timestamps of a number of -- files. When they are no files, it is never obsolete.