fsutils 0.1.1 → 0.1.2
raw patch · 2 files changed
+8/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ System.Path: filterUseless :: [FilePath] -> [FilePath]
Files
- fsutils.cabal +7/−2
- src/System/Path.hs +1/−0
fsutils.cabal view
@@ -2,9 +2,10 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: fsutils-version: 0.1.1+version: 0.1.2 synopsis: File system utilities for Haskell that are missing from built in libraries.--- description: +description: A collection of file system utilities such as recursive walks and file listings+ that I couldn't find nice solutions for elsewhere. homepage: https://github.com/Raynes/fsutils license: MIT license-file: LICENSE@@ -21,3 +22,7 @@ -- other-modules: build-depends: base >= 4.5 && < 4.7, filepath ==1.3.0.*, directory >=1.1.0 && < 1.3++source-repository head+ type: git+ location: https://github.com/Raynes/fsutils
src/System/Path.hs view
@@ -14,6 +14,7 @@ , subDirs , files , createDir+ , filterUseless ) where import Control.Monad (liftM, filterM, forM_, mapM_)