bluefin 0.2.4.0 → 0.2.5.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.Eff: finally :: forall (es :: Effects) b. Eff es b -> Eff es () -> Eff es b
Files
- CHANGELOG.md +4/−0
- bluefin.cabal +2/−2
- src/Bluefin/Eff.hs +1/−0
CHANGELOG.md view
@@ -1,3 +1,7 @@+# 0.2.5.0++* Add `finally`+ # 0.2.4.0 * Add `Bluefin.CloneHandle` and `Bluefin.IO.withEffToIOCloneHandle`
bluefin.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.0 name: bluefin-version: 0.2.4.0+version: 0.2.5.0 license: MIT license-file: LICENSE author: Tom Ellis@@ -41,6 +41,6 @@ Bluefin.System.IO, Bluefin.Writer, build-depends:- bluefin-internal >= 0.3.2.0 && < 0.4+ bluefin-internal >= 0.3.3.0 && < 0.4 hs-source-dirs: src default-language: Haskell2010
src/Bluefin/Eff.hs view
@@ -7,6 +7,7 @@ runEff, -- * Resource management bracket,+ finally, -- * Type classes -- | See "Bluefin.Eff.IO" for the most direct way of doing I/O in