diff --git a/protolude-lifted.cabal b/protolude-lifted.cabal
--- a/protolude-lifted.cabal
+++ b/protolude-lifted.cabal
@@ -1,5 +1,5 @@
 name:                protolude-lifted
-version:             0.1.0.1
+version:             0.1.1.0
 synopsis:            Protolude with lifted-base and lifted-async.
 description:         Protolude with lifted-base and lifted-async.
 homepage:            https://github.com/pbogdan/protolude-lifted
@@ -23,6 +23,7 @@
                      , protolude >= 0.1.6 && < 0.2
                      , lifted-base >=0.2.3.8 && <0.3
                      , lifted-async >=0.9.0 && <0.10
+                     , async >= 2.1 && < 2.2
   default-language:    Haskell2010
   default-extensions:  OverloadedStrings, NoImplicitPrelude
 
diff --git a/src/Protolude/Lifted.hs b/src/Protolude/Lifted.hs
--- a/src/Protolude/Lifted.hs
+++ b/src/Protolude/Lifted.hs
@@ -1,3 +1,5 @@
+{-# LANGUAGE CPP #-}
+
 -- | Protolude + the following modules re-exported from lifted-sync and
 -- lifted-base packages:
 --
@@ -96,9 +98,15 @@
   , cancelWith
   , concurrently
   , forConcurrently
+#if MIN_VERSION_async(2,1,1)
+  , forConcurrently_
+#endif
   , link
   , link2
   , mapConcurrently
+#if MIN_VERSION_async(2,1,1)
+  , mapConcurrently_
+#endif
   , poll
   , race
   , race_
