Changelog of @hackage/strict-base-types 0.5.0
-
0.5.0
-
Change the implementation of the 'Monoid Maybe' instance such that it is the same as the one for the lazy 'Maybe'; i.e., we now use
Nothing
mappendm = m mmappendNothing = m Just x1mappendJust x2 = Just (x1mappendx2)instead of
Nothing
mappend_ = Nothing _mappendNothing = Nothing Just x1mappendJust x2 = Just (x1mappendx2)
-
-
0.4.0
- Add contributions by Oleg Grenrus (@phadej)
- Add 'Functor', 'Foldable', 'Traversable' for 'Pair'
- bifunctors-5.1 compatibility
- GHC 7.10.x -Wall cleaning
- Add 'Hashable' instances for 'Pair', 'Maybe', and 'Either'.
- Add contributions by Oleg Grenrus (@phadej)
-
0.3.0
- Add 'Foldable', and 'Traversable' instances (thanks @jaspervdj)
-
0.2.3
- started changelog
- Make compatible with GHC 7.8 RC1