packages feed

polysemy-vinyl 0.1.3.1 → 0.1.4.0

raw patch · 3 files changed

+7/−1 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Polysemy.Vinyl: runInputConstFC :: forall b f g r a. f (g b) -> Sem (Input ((f :. g) b) : r) a -> Sem r a

Files

ChangeLog.md view
@@ -1,5 +1,9 @@ # Changelog for polysemy-vinyl +## v0.1.4.0++* Fix export of `runInputConstFC`.+ ## v0.1.3.0  * Add `runInputConstFC`.
polysemy-vinyl.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           polysemy-vinyl-version:        0.1.3.1+version:        0.1.4.0 synopsis:       Functions for mapping vinyl records in polysemy. description:    Extra functions for using vinyl records in polysemy. category:       Polysemy Vinyl@@ -30,6 +30,7 @@       Paths_polysemy_vinyl   hs-source-dirs:       src+  ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints   build-depends:       base >=4.7 && <5     , polysemy
src/Polysemy/Vinyl.hs view
@@ -24,6 +24,7 @@ , separateRecInput' , stripRecInput , endRecInput+, runInputConstFC ) where  import Control.Arrow