packages feed

filtrable 0.1.0.4 → 0.1.0.5

raw patch · 2 files changed

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

version bump matches the API change (PVP)

Dependency ranges changed: base

API changes (from Hackage documentation)

Files

Data/Filtrable.hs view
@@ -18,6 +18,8 @@ -- -- * @'filter' f = 'mapMaybe' (\\ x -> 'bool' 'Nothing' ('Just' x) (f x))@ --+-- * @'mapMaybe' g . 'mapMaybe' f = 'mapMaybe' (g '<=<' f)@+-- --   Laws if @'Foldable' f@: -- -- * @'foldMap' g . 'filter' f = 'foldMap' (\\ x -> 'bool' 'mempty' (g x) (f x))@
filtrable.cabal view
@@ -1,5 +1,5 @@ name:                filtrable-version:             0.1.0.4+version:             0.1.0.5 synopsis:            Class of filtrable containers homepage:            https://github.com/strake/filtrable.hs license:             BSD3