Skip to content

Commit

Permalink
Merge tag 'v0.7.0.1' into develop
Browse files Browse the repository at this point in the history
v0.7.0.1
  • Loading branch information
Mitsutoshi Aoe committed May 18, 2015
2 parents ef13085 + b970eba commit 7fe90df
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -19,7 +19,6 @@ env:

matrix:
allow_failures:
- env: CABALVER=1.22 GHCVER=7.10.1
- env: CABALVER=head GHCVER=head

# Note: the distinction between `before_install` and `install` is not
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
## v0.7.0.1 - 2015-05-18

* Fix typecheck error with GHC HEAD (#17)

## v0.7.0 - 2015-03-30

* Fix the unnecessarily constrained type of link2 (#16)
Expand Down
7 changes: 4 additions & 3 deletions lifted-async.cabal
@@ -1,5 +1,5 @@
name: lifted-async
version: 0.7.0
version: 0.7.0.1
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
Expand All @@ -12,7 +12,8 @@ category: Concurrency
build-type: Simple
cabal-version: >= 1.8
tested-with:
GHC == 7.8.4
GHC == 7.10.1
, GHC == 7.8.4
, GHC == 7.6.3
, GHC == 7.4.2

Expand Down Expand Up @@ -112,5 +113,5 @@ source-repository head

source-repository this
type: git
tag: v0.7.0
tag: v0.7.0.1
location: https://github.com/maoe/lifted-async.git
2 changes: 1 addition & 1 deletion src/Control/Concurrent/Async/Lifted.hs
Expand Up @@ -381,7 +381,7 @@ instance MonadBaseControl IO m => Applicative (Concurrently m) where
Concurrently $ uncurry ($) <$> concurrently fs as

instance MonadBaseControl IO m => Alternative (Concurrently m) where
empty = Concurrently . liftBaseWith . const $ forever (threadDelay maxBound)
empty = Concurrently $ liftBaseWith $ const (forever $ threadDelay maxBound)
Concurrently as <|> Concurrently bs =
Concurrently $ either id id <$> race as bs

Expand Down
2 changes: 1 addition & 1 deletion src/Control/Concurrent/Async/Lifted/Safe.hs
Expand Up @@ -360,7 +360,7 @@ instance (MonadBaseControl IO m, Forall (Pure m)) =>

instance (MonadBaseControl IO m, Forall (Pure m)) =>
Alternative (Concurrently m) where
empty = Concurrently . liftBaseWith . const $ forever (threadDelay maxBound)
empty = Concurrently $ liftBaseWith $ const (forever $ threadDelay maxBound)
Concurrently (as :: m a) <|> Concurrently bs =
Concurrently (either id id <$> race as bs)
\\ (inst :: Forall (Pure m) :- Pure m a)
Expand Down

0 comments on commit 7fe90df

Please sign in to comment.