packages feed

harp 0.4.3 → 0.4.3.1

raw patch · 1 files changed

+3/−3 lines, 1 filesdep ~basePVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: base

API changes (from Hackage documentation)

- Harp.Match: unzip3 :: [(a, b, c)] -> ([a], [b], [c])
+ Harp.Match: unzip3 :: () => [(a, b, c)] -> ([a], [b], [c])
- Harp.Match: unzip4 :: [(a, b, c, d)] -> ([a], [b], [c], [d])
+ Harp.Match: unzip4 :: () => [(a, b, c, d)] -> ([a], [b], [c], [d])
- Harp.Match: unzip5 :: [(a, b, c, d, e)] -> ([a], [b], [c], [d], [e])
+ Harp.Match: unzip5 :: () => [(a, b, c, d, e)] -> ([a], [b], [c], [d], [e])
- Harp.Match: unzip6 :: [(a, b, c, d, e, f)] -> ([a], [b], [c], [d], [e], [f])
+ Harp.Match: unzip6 :: () => [(a, b, c, d, e, f)] -> ([a], [b], [c], [d], [e], [f])
- Harp.Match: unzip7 :: [(a, b, c, d, e, f, g)] -> ([a], [b], [c], [d], [e], [f], [g])
+ Harp.Match: unzip7 :: () => [(a, b, c, d, e, f, g)] -> ([a], [b], [c], [d], [e], [f], [g])

Files

harp.cabal view
@@ -1,5 +1,5 @@ Name:                   harp-Version:                0.4.3+Version:                0.4.3.1 License:                BSD3 License-File:           LICENSE Author:                 Niklas Broberg@@ -19,7 +19,7 @@                         For details on usage, please see the website. Homepage:               https://github.com/seereason/harp Build-Type:             Simple-tested-with:            GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.2, GHC==8.0.1+tested-with:            GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.2, GHC==8.0.1, GHC==8.2.2, GHC==8.4.1 Cabal-Version:           >= 1.8  source-repository head@@ -27,5 +27,5 @@     location: https://github.com/seereason/harp.git  Library-    Build-Depends:          base < 4.11+    Build-Depends:          base < 4.12     Exposed-modules:        Harp.Match