packages feed

polysemy-extra 0.1.5.0 → 0.1.6.0

raw patch · 3 files changed

+6/−1 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

ChangeLog.md view
@@ -1,5 +1,9 @@ # Changelog for polysemy-extra +## v0.1.6.0++* Inline fix for `runInputConstF`.+ ## v0.1.5.0  * Add `runInputConstF`.
polysemy-extra.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           polysemy-extra-version:        0.1.5.0+version:        0.1.6.0 synopsis:       Extra Input and Output functions for polysemy.. category:       Polysemy author:         Daniel Firth
src/Polysemy/Extra.hs view
@@ -195,6 +195,7 @@                -> Sem (Input (f b) ': r) a                -> Sem r a runInputConstF = runInputConst @(f b)+{-# INLINE runInputConstF #-}  -- | Reinterpret the second effect in the stack into a single effect. --