diff --git a/CHANGELOG b/CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -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
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -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.
diff --git a/conceit.cabal b/conceit.cabal
--- a/conceit.cabal
+++ b/conceit.cabal
@@ -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
 
