Skip to content

Commit 5c708b9

Browse files
committed
Tweak
1 parent 47d0a00 commit 5c708b9

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

containers/changelog.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,8 @@
2222
least 2 entries with equal keys. (Soumik Sarkar)
2323
([#1023](https://github.com/haskell/containers/pull/1023))
2424

25-
* `Data.Set.fold` and `Data.IntSet.fold` have long been documented as
26-
deprecated and are now marked as such. They will be removed in a future
27-
release. (Soumik Sarkar)
25+
* `Data.Set.fold` and `Data.IntSet.fold` are deprecated. One should instead use
26+
`Data.Set.foldr` and `Data.IntSet.foldr`. (Soumik Sarkar)
2827
([#1049](https://github.com/haskell/containers/pull/1049))
2928

3029
* For `Data.IntMap.{Lazy,Strict}`, `updateMin`, `updateMax`, `updateMinWithKey`,
@@ -37,7 +36,7 @@
3736
structures in the library. (Soumik Sarkar)
3837
([#1077](https://github.com/haskell/containers/pull/1077))
3938

40-
* Various deprecated functions, whose definitions currently cause type errors,
39+
* Some long deprecated functions, whose definitions currently cause type errors,
4140
have been removed. (Soumik Sarkar)
4241
([#1046](https://github.com/haskell/containers/pull/1046))
4342

@@ -104,15 +103,16 @@
104103
### Performance improvements
105104

106105
* The internal representations of `IntMap` and `IntSet` have been changed
107-
to be a little more memory efficient. (Soumik Sarkar)
106+
to be a little more memory efficient. Consequently, many functions on
107+
`IntMap`s and `IntSet`s are a little faster now. (Soumik Sarkar)
108108
([#995](https://github.com/haskell/containers/pull/995),
109109
[#998](https://github.com/haskell/containers/pull/998))
110110

111111
* Improved performance for `Data.Map`'s `minViewSure` and `maxViewSure`.
112112
(Soumik Sarkar) ([#1001](https://github.com/haskell/containers/pull/1001))
113113

114114
* For `Data.Graph.SCC`, `Foldable.toList` and `Foldable1.toNonEmpty` now
115-
do not perform a copy. (Soumik Sarkar)
115+
do not perform an unnecessary copy. (Soumik Sarkar)
116116
([#1057](https://github.com/haskell/containers/pull/1057))
117117

118118
* Improved performance for `Data.Intset`'s `foldr`, `foldl'`, `foldl`, `foldr'`.
@@ -191,7 +191,8 @@
191191
[#1094](https://github.com/haskell/containers/pull/1094),
192192
[#1095](https://github.com/haskell/containers/pull/1095),
193193
[#1097](https://github.com/haskell/containers/pull/1097),
194-
[#1103](https://github.com/haskell/containers/pull/1103))
194+
[#1103](https://github.com/haskell/containers/pull/1103),
195+
[#1117](https://github.com/haskell/containers/pull/1117))
195196

196197
* Add new tests and benchmarks (Soumik Sarkar)
197198
([#962](https://github.com/haskell/containers/pull/962),

0 commit comments

Comments
 (0)