packages feed

linear 1.19.1.1 → 1.19.1.2

raw patch · 3 files changed

+7/−1 lines, 3 filesdep ~basePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base

API changes (from Hackage documentation)

Files

CHANGELOG.markdown view
@@ -1,3 +1,7 @@+1.19.1.2+--------+* Fix GHC 7.4.+ 1.19.1.1 -------- * Proper `reflection` 2 support
linear.cabal view
@@ -1,6 +1,6 @@ name:          linear category:      Math, Algebra-version:       1.19.1.1+version:       1.19.1.2 license:       BSD3 cabal-version: >= 1.8 license-file:  LICENSE
src/Linear/V.hs view
@@ -173,10 +173,12 @@   {-# INLINE foldr #-}   foldl f z (V as) = V.foldl f z as   {-# INLINE foldl #-}+#if __GLASGOW_HASKELL__ >= 706   foldr' f z (V as) = V.foldr' f z as   {-# INLINE foldr' #-}   foldl' f z (V as) = V.foldl' f z as   {-# INLINE foldl' #-}+#endif   foldr1 f (V as) = V.foldr1 f as   {-# INLINE foldr1 #-}   foldl1 f (V as) = V.foldl1 f as