bluefin 0.0.8.0 → 0.0.9.0
raw patch · 4 files changed
+9/−1 lines, 4 filesdep ~bluefin-internalPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: bluefin-internal
API changes (from Hackage documentation)
+ Bluefin.Exception: rethrowIO :: forall ex (es :: Effects) (e1 :: Effects) (e2 :: Effects) r. (e1 :> es, e2 :> es, Exception ex) => IOE e1 -> Exception ex e2 -> Eff es r -> Eff es r
+ Bluefin.IO: rethrowIO :: forall ex (es :: Effects) (e1 :: Effects) (e2 :: Effects) r. (e1 :> es, e2 :> es, Exception ex) => IOE e1 -> Exception ex e2 -> Eff es r -> Eff es r
Files
- CHANGELOG.md +6/−0
- bluefin.cabal +1/−1
- src/Bluefin/Exception.hs +1/−0
- src/Bluefin/IO.hs +1/−0
CHANGELOG.md view
@@ -1,3 +1,9 @@+## 0.0.9.0++* Add `instance Handle IOE`++* Add `rethrowIO`+ ## 0.0.8.0 Add `Bluefin.Consume` and `consumeStream`
bluefin.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.0 name: bluefin-version: 0.0.8.0+version: 0.0.9.0 license: MIT license-file: LICENSE author: Tom Ellis
src/Bluefin/Exception.hs view
@@ -7,6 +7,7 @@ catch, -- * Effectful operations throw,+ rethrowIO, ) where
src/Bluefin/IO.hs view
@@ -7,6 +7,7 @@ runEff, -- * Effectful operations effIO,+ rethrowIO, -- * IO type classes withMonadIO, withEffToIO,