directory-tree 0.9.0 → 0.9.1
raw patch · 2 files changed
+1/−2 lines, 2 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- System.Directory.Tree: instance (Show a) => Show (AnchoredDirTree a)
- System.Directory.Tree: instance (Show a) => Show (DirTree a)
+ System.Directory.Tree: instance Show a => Show (AnchoredDirTree a)
+ System.Directory.Tree: instance Show a => Show (DirTree a)
- System.Directory.Tree: (</$>) :: (Functor f) => (DirTree a -> DirTree b) -> f (AnchoredDirTree a) -> f (AnchoredDirTree b)
+ System.Directory.Tree: (</$>) :: Functor f => (DirTree a -> DirTree b) -> f (AnchoredDirTree a) -> f (AnchoredDirTree b)
Files
- System/Directory/Tree.hs +0/−1
- directory-tree.cabal +1/−1
System/Directory/Tree.hs view
@@ -116,7 +116,6 @@ import Data.Ord (comparing) import Data.List (sort, (\\))-import Data.Maybe (mapMaybe) import Control.Applicative import qualified Data.Traversable as T
directory-tree.cabal view
@@ -1,5 +1,5 @@ name: directory-tree-version: 0.9.0+version: 0.9.1 homepage: http://coder.bsimmons.name/blog/2009/05/directory-tree-module-released/ synopsis: A simple directory-like tree datatype, with useful IO functions description: A simple directory-like tree datatype, with useful IO functions and Foldable and Traversable instance