packages feed

bluefin 0.6.0.0 → 0.7.0.0

raw patch · 2 files changed

+9/−2 lines, 2 filesdep ~bluefin-internalPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: bluefin-internal

API changes (from Hackage documentation)

- Bluefin.Capability.Ask: type Ask = Reader
+ Bluefin.Capability.Ask: type Ask = Reader :: Type -> k -> Type
- Bluefin.Capability.AskCapability: type AskCapability = HandleReader
+ Bluefin.Capability.AskCapability: type AskCapability = HandleReader :: k -> Type -> k -> Type
- Bluefin.HandleReader: data HandleReader (h :: Effects -> Type) (e :: Effects)
+ Bluefin.HandleReader: data HandleReader (h :: k -> Type) (e :: k)
- Bluefin.Reader: data Reader r (e :: Effects)
+ Bluefin.Reader: data Reader r (e :: k)

Files

CHANGELOG.md view
@@ -1,3 +1,10 @@+# 0.7.0.0++* Fix `Reader` bug that caused incorrect scoping in+  `awaitYield`/`connectRequests`/`streamConsume`/`connectCoroutines`++  <https://github.com/tomjaguarpaw/bluefin/issues/98>+ # 0.6.0.0  * Changed type of `runEff` to match `runEff_`
bluefin.cabal view
@@ -1,6 +1,6 @@ cabal-version:      3.0 name:               bluefin-version:            0.6.0.0+version:            0.7.0.0 license:            MIT license-file:       LICENSE author:             Tom Ellis@@ -56,6 +56,6 @@       Bluefin.System.IO,       Bluefin.Writer,     build-depends:-      bluefin-internal >= 0.6 && < 0.7+      bluefin-internal >= 0.7 && < 0.8     hs-source-dirs:   src     default-language: Haskell2010