Changelog for
ghc-profunctors-5.3-lp150.1.1.x86_64.rpm :
* Wed Jul 11 2018 psimonsAATTsuse.com- Update profunctors to version 5.3. 5.3 [2018.07.02] - ---------------
* Generalize the types of `(#.)` and `(.#)`. Before, they were: ```haskell (#.) :: (Profunctor p, Coercible c b) => (b -> c) -> p a b -> p a c (.#) :: (Profunctor p, Coercible b a) => p b c -> (a -> b) -> p a c ``` Now, they are: ```haskell (#.) :: (Profunctor p, Coercible c b) => q b c -> p a b -> p a c (.#) :: (Profunctor p, Coercible b a) => p b c -> q a b -> p a c ```
* Drop support for GHC < 7.8.
* Add a `Profunctor` instance for `Data.Bifunctor.Sum`.
* Wed Mar 14 2018 psimonsAATTsuse.com- Update profunctors to version 5.2.2 revision 1. A more detailed change log is not available.