packages feed

bluefin 0.7.0.1 → 0.7.1.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.Compound: oneWayCoercibleNewtypeHandle :: forall {k} (h1 :: Effects -> k) (h2 :: Effects -> k) (e :: Effects) (es :: Effects). (e :> es, Coercible (h2 e) (h1 e), OneWayCoercible (h1 e) (h1 es), Coercible (h1 es) (h2 es)) => OneWayCoercibleD (h2 e) (h2 es)

Files

CHANGELOG.md view
@@ -1,3 +1,7 @@+# 0.7.1.0++* Add `Bluefin.Compound.oneWayCoercibleNewtypeHandle`+ # 0.7.0.1  * Update `Bluefin.Compound` documentation
bluefin.cabal view
@@ -1,6 +1,6 @@ cabal-version:      3.0 name:               bluefin-version:            0.7.0.1+version:            0.7.1.0 license:            MIT license-file:       LICENSE author:             Tom Ellis@@ -56,6 +56,6 @@       Bluefin.System.IO,       Bluefin.Writer,     build-depends:-      bluefin-internal >= 0.7 && < 0.9+      bluefin-internal >= 0.8.1.0 && < 0.9     hs-source-dirs:   src     default-language: Haskell2010
src/Bluefin/Compound.hs view
@@ -680,6 +680,7 @@     withHandle,     OneWayCoercible.gOneWayCoercible,     oneWayCoercibleTrustMe,+    oneWayCoercibleNewtypeHandle,     -- | Bluefin re-exports @Generic@ for convenience.     OneWayCoercible.Generic,