lifted-async 0.2.0.1 → 0.2.0.2
raw patch · 4 files changed
+9/−5 lines, 4 filesdep ~tasty-hunitPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: tasty-hunit
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- lifted-async.cabal +4/−4
- src/Control/Concurrent/Async/Lifted.hs +1/−0
- tests/Test/Async/Common.hs +0/−1
CHANGELOG.md view
@@ -1,3 +1,7 @@+## v0.2.0.2 - 2014-08-20++* Fix build failure in the test suite (#6)+ ## v0.2.0.1 - 2014-07-26 * Fix a typo in a haddock comment (#5 by @supki)
lifted-async.cabal view
@@ -1,5 +1,5 @@ name: lifted-async-version: 0.2.0.1+version: 0.2.0.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@@ -48,7 +48,7 @@ , monad-control , mtl , tasty- , tasty-hunit+ , tasty-hunit == 0.9.* , tasty-th test-suite regression-tests@@ -61,7 +61,7 @@ , async , lifted-async , mtl- , tasty-hunit+ , tasty-hunit == 0.9.* , tasty-th benchmark benchmark-lifted-async@@ -95,5 +95,5 @@ source-repository this type: git- tag: v0.2.0.1+ tag: v0.2.0.2 location: https://github.com/maoe/lifted-async.git
src/Control/Concurrent/Async/Lifted.hs view
@@ -330,6 +330,7 @@ -- delivering the result of type 'a'. -- -- For example+-- -- > (page1, page2, page3) <- runConcurrently $ (,,) -- > <$> Concurrently (getURL "url1") -- > <*> Concurrently (getURL "url2")
tests/Test/Async/Common.hs view
@@ -12,7 +12,6 @@ import Test.Tasty as X import Test.Tasty.HUnit as X import Test.Tasty.TH as X-import Test.HUnit as X hiding (Test) import Control.Concurrent.Async.Lifted as X