Concurrential 0.5.0.0 → 0.5.0.1
raw patch · 2 files changed
+4/−3 lines, 2 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
Concurrential.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: Concurrential-version: 0.5.0.0+version: 0.5.0.1 synopsis: Mix concurrent and sequential computation -- description: homepage: http://github.com/avieth/Concurrential@@ -27,6 +27,7 @@ , DeriveFunctor , ScopedTypeVariables - build-depends: base >=4.7 && <4.8, async >=2.0 && <2.1+ build-depends: base >=4.7 && <4.9+ , async >=2.0 && <2.1 -- hs-source-dirs: default-language: Haskell2010
Control/Concurrent/Concurrential.hs view
@@ -77,7 +77,7 @@ Concurrent io -> Concurrent $ fmap f io -- | Description of computation which is composed of sequential and concurrent--- parts in some monad @m@.+-- parts. data Concurrential t where SCAtom :: Choice IO t -> Concurrential t SCBind :: Concurrential s -> (s -> Concurrential t) -> Concurrential t