conceit 0.2.1.0 → 0.2.2.0
raw patch · 3 files changed
+13/−5 lines, 3 filesdep ~exceptionsdep ~void
Dependency ranges changed: exceptions, void
Files
- CHANGELOG +4/−0
- README.md +6/−2
- conceit.cabal +3/−3
CHANGELOG view
@@ -1,3 +1,7 @@+0.2.2.0+=======+ - Bumped void and exceptions dependencies.+ 0.2.1.0 ======= - Now >> behaves differently from the concurrent *>, and sequences its
README.md view
@@ -1,7 +1,11 @@ conceit ======= -A version of the async package's Concurrently for which the computations can-be interrupted by returning a Left value.+A version of the Concurrently applicative from Simon Marlow's async package,+with the difference that the concurrent computation stops if any of the actions+returns a Left value, not only in the case of exceptions.++The internals have been copied wholesale from Concurrently, with modifications+to support the new behaviour. Includes a useful Bifunctor instance.
conceit.cabal view
@@ -1,5 +1,5 @@ name: conceit-version: 0.2.1.0+version: 0.2.2.0 license: BSD3 license-file: LICENSE data-files: @@ -25,8 +25,8 @@ base >= 4.4 && < 5, semigroupoids ==4.*, bifunctors >= 4.1 && < 5,- void >= 0.6 && < 0.7,- exceptions >= 0.6 && < 0.7,+ void >= 0.6 && < 1.0,+ exceptions >= 0.6 && < 1.0, mtl >=2.0 && <2.3, transformers >=0.2 && < 0.5