rio 0.1.0.0 → 0.1.1.0
raw patch · 4 files changed
+8/−4 lines, 4 files
Files
- ChangeLog.md +4/−0
- rio.cabal +2/−2
- src/RIO/List.hs +0/−2
- src/RIO/List/Partial.hs +2/−0
ChangeLog.md view
@@ -1,5 +1,9 @@ # Changelog for rio +## 0.1.1.0++* Move some accidentally included partial functions+ ## 0.1.0.0 * Initial stable release
rio.cabal view
@@ -2,10 +2,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: fbb7c4b9567f7b9802c00b874f404950b8358f767ddc06a21b77c66e3e4cfabd+-- hash: 41f8f90d704c32652d5e506303e73626dc68f4097e4e73c37007937b54add786 name: rio-version: 0.1.0.0+version: 0.1.1.0 synopsis: A standard library for Haskell description: See README and Haddocks at <https://www.stackage.org/package/rio> category: Control
src/RIO/List.hs view
@@ -178,8 +178,6 @@ -- | The function is assumed to define a total ordering. , Data.List.sortBy , Data.List.insertBy- , Data.List.maximumBy- , Data.List.minimumBy -- ** The \"@generic@\" operations -- | The prefix \`@generic@\' indicates an overloaded function that
src/RIO/List/Partial.hs view
@@ -14,6 +14,8 @@ -- ** Special folds , Data.List.maximum , Data.List.minimum+ , Data.List.maximumBy+ , Data.List.minimumBy -- * Building lists