packages feed

alg 0.2.7.0 → 0.2.8.0

raw patch · 2 files changed

+6/−1 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Relation.Binary.Comparison: instance Relation.Binary.Comparison.PartialEq a => Relation.Binary.Comparison.PartialEq [a]

Files

Relation/Binary/Comparison.hs view
@@ -274,3 +274,8 @@  instance PartialEq a => PartialEq (Ratio a) where     (≡) = (≡) `on` liftA2 (,) numerator denominator++instance PartialEq a => PartialEq [a] where+    [] ≡ [] = True+    x:xs ≡ y:ys = (x, xs) ≡ (y, ys)+    _ ≡ _ = False
alg.cabal view
@@ -1,5 +1,5 @@ name:                alg-version:             0.2.7.0+version:             0.2.8.0 synopsis:            Algebraic structures -- description:          license:             BSD3