pipes-concurrency 2.0.10 → 2.0.11
raw patch · 1 files changed
+2/−2 lines, 1 filesdep ~contravariantPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: contravariant
API changes (from Hackage documentation)
- Pipes.Concurrent: instance Data.Semigroup.Semigroup (Pipes.Concurrent.Input a)
- Pipes.Concurrent: instance Data.Semigroup.Semigroup (Pipes.Concurrent.Output a)
+ Pipes.Concurrent: atomically :: () => STM a -> IO a
+ Pipes.Concurrent: data STM a
+ Pipes.Concurrent: forkIO :: IO () -> IO ThreadId
+ Pipes.Concurrent: instance GHC.Base.Semigroup (Pipes.Concurrent.Input a)
+ Pipes.Concurrent: instance GHC.Base.Semigroup (Pipes.Concurrent.Output a)
+ Pipes.Concurrent: mkWeakTVar :: () => TVar a -> IO () -> IO Weak TVar a
+ Pipes.Concurrent: newTVarIO :: () => a -> IO TVar a
+ Pipes.Concurrent: performGC :: IO ()
+ Pipes.Concurrent: readTVar :: () => TVar a -> STM a
- Pipes.Concurrent: Output :: (a -> STM Bool) -> Output a
+ Pipes.Concurrent: Output :: a -> STM Bool -> Output a
Files
- pipes-concurrency.cabal +2/−2
pipes-concurrency.cabal view
@@ -1,5 +1,5 @@ Name: pipes-concurrency-Version: 2.0.10+Version: 2.0.11 Cabal-Version: >=1.8.0.2 Build-Type: Simple License: BSD3@@ -33,7 +33,7 @@ Build-Depends: base >= 4 && < 5 , async >= 2.0.0.0 && < 2.3 ,- contravariant >= 1.3.3 && < 1.5 ,+ contravariant >= 1.3.3 && < 1.6 , pipes >= 4.0 && < 4.4 , semigroups < 0.19, stm >= 2.4.3 && < 2.5 ,