Commit e8c4cba 1 parent 311549f commit e8c4cba Copy full SHA for e8c4cba
File tree 4 files changed +7
-3
lines changed
4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog for rio
2
2
3
+ ## 0.1.1.0
4
+
5
+ * Move some accidentally included partial functions
6
+
3
7
## 0.1.0.0
4
8
5
9
* Initial stable release
Original file line number Diff line number Diff line change 1
1
name : rio
2
- version : 0.1.0 .0
2
+ version : 0.1.1 .0
3
3
synopsis : A standard library for Haskell
4
4
description : See README and Haddocks at <https://www.stackage.org/package/rio>
5
5
license : MIT
Original file line number Diff line number Diff line change @@ -178,8 +178,6 @@ module RIO.List
178
178
-- | The function is assumed to define a total ordering.
179
179
, Data.List. sortBy
180
180
, Data.List. insertBy
181
- , Data.List. maximumBy
182
- , Data.List. minimumBy
183
181
184
182
-- ** The \"@generic@\" operations
185
183
-- | The prefix \`@generic@\' indicates an overloaded function that
Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ module RIO.List.Partial
14
14
-- ** Special folds
15
15
, Data.List. maximum
16
16
, Data.List. minimum
17
+ , Data.List. maximumBy
18
+ , Data.List. minimumBy
17
19
18
20
-- * Building lists
19
21
You can’t perform that action at this time.
0 commit comments