diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2014-09-20 23:58:12 +0200 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2014-09-20 23:59:49 +0200 |
commit | ed65808cebf068a98f564f6ad962838c6526591b (patch) | |
tree | 7b6bd9d9bde30c273d6d77fce15a225d22c1f77d /libraries | |
parent | 05cf18f883bf2d49b53a1d25cb57eff3333eb0c9 (diff) | |
download | haskell-ed65808cebf068a98f564f6ad962838c6526591b.tar.gz |
Add missing changelog entries for current state of #9586
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/base/changelog.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libraries/base/changelog.md b/libraries/base/changelog.md index c57d5f0e56..d7e1133263 100644 --- a/libraries/base/changelog.md +++ b/libraries/base/changelog.md @@ -45,6 +45,20 @@ In other words, unqualified imports of `Data.List` and `Data.Foldable` no longer lead to conflicting definitions. (#9586) + * Replace the `Control.Monad`-exported functions + + ``` + sequence_, msum, mapM_, forM_ + ``` + + by re-exports of their generalised `Data.Foldable` counterparts. + In other words, unqualified imports of `Control.Monad` and + `Data.Foldable` no longer lead to conflicting definitions. (#9586) + + * New module `Data.OldList` containing only list-specialised versions of + the functions from `Data.List` (in other words, `Data.OldList` corresponds + to `base-4.7.0.1`'s `Data.List`) + ## 4.7.0.1 *Jul 2014* * Bundled with GHC 7.8.3 |