diff --git a/lifted-async.cabal b/lifted-async.cabal
--- a/lifted-async.cabal
+++ b/lifted-async.cabal
@@ -1,5 +1,5 @@
 name:                lifted-async
-version:             0.1.1
+version:             0.1.2
 synopsis:            Run lifted IO operations asynchronously and wait for their results
 homepage:            https://github.com/maoe/lifted-async
 bug-reports:         https://github.com/maoe/lifted-async/issues
@@ -7,7 +7,7 @@
 license-file:        LICENSE
 author:              Mitsutoshi Aoe
 maintainer:          Mitsutoshi Aoe <maoe@foldr.in>
-copyright:           (C) 2012 Mitsutoshi Aoe
+copyright:           Copyright (C) 2012-2014 Mitsutoshi Aoe
 category:            Concurrency
 build-type:          Simple
 cabal-version:       >= 1.8
@@ -20,7 +20,7 @@
   exposed-modules:
     Control.Concurrent.Async.Lifted
   build-depends:
-      base >= 4.3 && < 5
+      base >= 4.3 && < 4.8
     , async >= 2.0.1
     , lifted-base >= 0.2
     , monad-control >= 0.3.1
@@ -86,4 +86,10 @@
 
 source-repository head
   type: git
+  branch: develop
+  location: https://github.com/maoe/lifted-async.git
+
+source-repository this
+  type: git
+  tag: v0.1.2
   location: https://github.com/maoe/lifted-async.git
diff --git a/src/Control/Concurrent/Async/Lifted.hs b/src/Control/Concurrent/Async/Lifted.hs
--- a/src/Control/Concurrent/Async/Lifted.hs
+++ b/src/Control/Concurrent/Async/Lifted.hs
@@ -3,7 +3,7 @@
 
 {- |
 Module      : Control.Concurrent.Async.Lifted
-Copyright   : (C) 2012 Mitsutoshi Aoe
+Copyright   : Copyright (C) 2012-2014 Mitsutoshi Aoe
 License     : BSD-style (see the file LICENSE)
 Maintainer  : Mitsutoshi Aoe <maoe@foldr.in>
 Stability   : experimental
@@ -38,9 +38,9 @@
     -- ** Linking
   , link, link2
 
-    -- ** Convenient utilities
+    -- * Convenient utilities
   , race, race_, concurrently, mapConcurrently
-  , A.Concurrently, A.runConcurrently
+  , A.Concurrently (..)
   ) where
 
 import Control.Monad ((>=>), liftM, void)
