bluefin 0.0.5.0 → 0.0.6.0
raw patch · 3 files changed
+7/−2 lines, 3 filesdep ~bluefin-internalPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: bluefin-internal
API changes (from Hackage documentation)
+ Bluefin.Stream: withYieldToList :: forall a (es :: Effects) r. (forall (e :: Effects). () => Stream a e -> Eff (e :& es) ([a] -> r)) -> Eff es r
Files
- CHANGELOG.md +4/−0
- bluefin.cabal +2/−2
- src/Bluefin/Stream.hs +1/−0
CHANGELOG.md view
@@ -1,3 +1,7 @@+## 0.0.6.0++* Add `withYieldToList`+ ## 0.0.5.0 * Fix roles on `Eff` (thanks to @Lysxia)
bluefin.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.0 name: bluefin-version: 0.0.5.0+version: 0.0.6.0 license: MIT license-file: LICENSE author: Tom Ellis@@ -34,6 +34,6 @@ Bluefin.Stream, Bluefin.Writer, build-depends:- bluefin-internal >= 0.0.5.0 && < 0.1+ bluefin-internal >= 0.0.6.0 && < 0.1 hs-source-dirs: src default-language: Haskell2010
src/Bluefin/Stream.hs view
@@ -12,6 +12,7 @@ forEach, yieldToList, yieldToReverseList,+ withYieldToList, enumerate, enumerateFrom, mapMaybe,