Skip to content

Commit

Permalink
Reexport foldMap' from new enough versions (#200)
Browse files Browse the repository at this point in the history
* Reexport foldMap' from new enough versions
* Update change log
  • Loading branch information
tfausak authored and chshersh committed Oct 3, 2019
1 parent cd4ff79 commit 78c307f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The changelog is available [on GitHub][2].

## Unreleased: 0.6.0.0

* [#192](https://github.com/kowainik/relude/issues/192):
Reexport `foldMap'` from `Data.Foldable`.
* [#187](https://github.com/kowainik/relude/issues/187):
Remove `tasty` and `tasty-hedgehog` dependencies and their redundant imports.
* [#195](https://github.com/kowainik/relude/pull/195):
Expand Down
3 changes: 3 additions & 0 deletions src/Relude/Foldable/Reexport.hs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ module Relude.Foldable.Reexport
import Data.Foldable (Foldable (fold, foldMap, foldl', foldr, length, null, toList), all, and, any,
asum, concat, concatMap, find, foldlM, forM_, for_, mapM_, or, sequenceA_,
sequence_, traverse_)
#if MIN_VERSION_base(4,13,0)
import Data.Foldable (foldMap')
#endif
import Data.Traversable (Traversable (..), forM, mapAccumL, mapAccumR)
#if MIN_VERSION_base(4,10,0)
import Data.Bifoldable (Bifoldable (..), biList, biall, biand, biany, biasum, bielem, bifind,
Expand Down

0 comments on commit 78c307f

Please sign in to comment.