directory-contents 0.2.0.1 → 0.2.0.2
raw patch · 2 files changed
+9/−5 lines, 2 filesdep ~basedep ~containersdep ~textPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: base, containers, text, transformers
API changes (from Hackage documentation)
- System.Directory.Contents: instance Data.Witherable.Class.Filterable System.Directory.Contents.DirTreeMaybe
- System.Directory.Contents: instance Data.Witherable.Class.Witherable System.Directory.Contents.DirTreeMaybe
+ System.Directory.Contents: instance Witherable.Filterable System.Directory.Contents.DirTreeMaybe
+ System.Directory.Contents: instance Witherable.Witherable System.Directory.Contents.DirTreeMaybe
Files
- CHANGELOG.md +4/−0
- directory-contents.cabal +5/−5
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for directory-contents +## 0.2.0.2++* Loosen version bounds+ ## 0.2.0.1 * Create test data rather than relying on fixtures, since it's hard to include these fixtures when using cabal sdist.
directory-contents.cabal view
@@ -1,6 +1,6 @@ cabal-version: >=1.10 name: directory-contents-version: 0.2.0.1+version: 0.2.0.2 synopsis: Recursively build, navigate, and operate on a tree of directory contents. description: Like the linux tree command, this library recursively constructs a tree of directory contents while detecting and avoiding symlink cycles. It also provides functions for operating on and navigating the contents.@@ -24,12 +24,12 @@ System.Directory.Contents.Types System.Directory.Contents.Zipper build-depends:- base >=4.12 && <4.15- , containers >=0.6 && <0.7+ base >=4.12 && <4.20+ , containers >=0.6 && <0.8 , directory >=1.3 && <1.4 , filepath >=1.4 && <1.5- , text >=1.2 && <1.3- , transformers >=0.5 && <0.6+ , text >=1.2 && <2.2+ , transformers >=0.5 && <0.7 , witherable >=0.3 && <0.5 hs-source-dirs: src