Files 0.1.1.0 → 0.1.1.1
raw patch · 4 files changed
+17/−1 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Files.cabal +5/−1
- data/in/f1.txt +3/−0
- data/in/f2.txt +3/−0
- data/out/try1.txt +6/−0
Files.cabal view
@@ -1,5 +1,5 @@ name: Files-version: 0.1.1.0+version: 0.1.1.1 synopsis: File content extraction/rearrangement description: Please see README.md homepage: https://github.com/yuhangwang/Files#readme@@ -11,6 +11,9 @@ category: IO build-type: Simple cabal-version: >=1.10+data-dir: data+data-files: in/*.txt+ , out/*.txt executable Files hs-source-dirs: src@@ -26,6 +29,7 @@ build-depends: base >= 4.7 && < 5 ghc-options: -Wall default-language: Haskell2010+ test-suite hspec build-depends: base, Files, hspec
+ data/in/f1.txt view
@@ -0,0 +1,3 @@+a +b +c
+ data/in/f2.txt view
@@ -0,0 +1,3 @@+1 +2 +3
+ data/out/try1.txt view
@@ -0,0 +1,6 @@+a +b +c +1 +2 +3