packages feed

protolude-lifted 0.1.0.1 → 0.1.1.0

raw patch · 2 files changed

+10/−1 lines, 2 filesdep +asyncPVP ok

version bump matches the API change (PVP)

Dependencies added: async

API changes (from Hackage documentation)

Files

protolude-lifted.cabal view
@@ -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 
src/Protolude/Lifted.hs view
@@ -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_