packages feed

Diff 0.3.3 → 0.3.4

raw patch · 2 files changed

+2/−1 lines, 2 filesdep ~basePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base

API changes (from Hackage documentation)

Files

Diff.cabal view
@@ -1,5 +1,5 @@ name:                Diff-version:             0.3.3+version:             0.3.4 synopsis:            O(ND) diff algorithm in haskell. description:         Implementation of the standard diff algorithm, and utilities for pretty printing. category:            Algorithms
src/Data/Algorithm/DiffOutput.hs view
@@ -15,6 +15,7 @@ import Text.PrettyPrint import Data.Char import Data.List+import Data.Monoid (mappend)  -- | Converts Diffs to DiffOperations diffToLineRanges :: [Diff [String]] -> [DiffOperation LineRange]