packages feed

polysemy-conc 0.11.0.0 → 0.11.1.0

raw patch · 3 files changed

+4/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

lib/Polysemy/Conc/Effect/Sync.hs view
@@ -4,6 +4,8 @@ module Polysemy.Conc.Effect.Sync where  import Polysemy.Time (TimeUnit)+import Prelude hiding (empty, try)+ import Polysemy.Conc.Effect.Scoped (Scoped_)  -- |Abstracts an 'Control.Concurrent.MVar'.
lib/Polysemy/Conc/Effect/SyncRead.hs view
@@ -4,7 +4,7 @@ module Polysemy.Conc.Effect.SyncRead where  import Polysemy.Time (TimeUnit)-import Prelude hiding (empty)+import Prelude hiding (empty, try)  -- |An interface to a shared variable ('MVar') that can only be read. data SyncRead (d :: Type) :: Effect where
polysemy-conc.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           polysemy-conc-version:        0.11.0.0+version:        0.11.1.0 synopsis:       Polysemy effects for concurrency description:    See https://hackage.haskell.org/package/polysemy-conc/docs/Polysemy-Conc.html category:       Concurrency