zero 0.1.3.1 → 0.1.4
raw patch · 3 files changed
+7/−3 lines, 3 filesdep ~base
Dependency ranges changed: base
Files
- CHANGELOG.md +4/−0
- src/Data/Zero.hs +1/−1
- zero.cabal +2/−2
CHANGELOG.md view
@@ -1,3 +1,7 @@+## 0.1.4++- Support for GHC 8.0.1.+ ### 0.1.3.1 - semigrous-0.18 support.
src/Data/Zero.hs view
@@ -45,7 +45,7 @@ -- |Concat all the elements according to ('<>') and 'zero'. zconcat :: [a] -> a - default zconcat :: (Semigroup a) => [a] -> a+ default zconcat :: [a] -> a zconcat [] = zero zconcat (x:xs) = foldr (<>) x xs {-# MINIMAL zero #-}
zero.cabal view
@@ -1,5 +1,5 @@ name: zero-version: 0.1.3.1+version: 0.1.4 synopsis: Semigroups with absorption description: 'Monoid' is a 'Semigroup' glued with a neutral element called 'mempty'. In the same idea, 'Zero' is a 'Semigroup'@@ -38,7 +38,7 @@ , DeriveTraversable , GeneralizedNewtypeDeriving - build-depends: base >= 4.8 && < 4.9+ build-depends: base >= 4.8 && < 5.0 , semigroups >= 0.16 && < 0.19 hs-source-dirs: src