streaming-sort 0.1.0.0 → 0.1.0.1
raw patch · 3 files changed
+7/−2 lines, 3 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Streaming.Sort.Lifted: withFileSortBy :: (Ord a, Binary a, Withable w, MonadMask (WithMonad w), MonadIO (WithMonad w), MonadThrow m, MonadIO m) => Config -> (a -> a -> Ordering) -> Stream (Of a) (WithMonad w) v -> w (Stream (Of a) m ())
+ Streaming.Sort.Lifted: withFileSortBy :: (Binary a, Withable w, MonadMask (WithMonad w), MonadIO (WithMonad w), MonadThrow m, MonadIO m) => Config -> (a -> a -> Ordering) -> Stream (Of a) (WithMonad w) v -> w (Stream (Of a) m ())
Files
- ChangeLog.md +5/−0
- src/Streaming/Sort/Lifted.hs +1/−1
- streaming-sort.cabal +1/−1
ChangeLog.md view
@@ -1,5 +1,10 @@ # Revision history for streaming-sort +## 0.1.0.1 -- 2018-03-23++* Remove accidental `Ord a` constraint on `withFileSortBy` in+ `Streaming.Sort.Lifted`.+ ## 0.1.0.0 -- 2018-03-18 * First version. Released on an unsuspecting world.
src/Streaming/Sort/Lifted.hs view
@@ -84,7 +84,7 @@ -- These files are stored inside the specified directory if -- provided; if no such directory is provided then the system -- temporary directory is used.-withFileSortBy :: (Ord a, Binary a, Withable w+withFileSortBy :: (Binary a, Withable w , MonadMask (WithMonad w), MonadIO (WithMonad w) , MonadThrow m, MonadIO m) => Config -> (a -> a -> Ordering)
streaming-sort.cabal view
@@ -1,5 +1,5 @@ name: streaming-sort-version: 0.1.0.0+version: 0.1.0.1 synopsis: Sorting streams description: Sort streaming values, using files for a cached merge-sort of long @Stream@s. license: MIT