async 2.0.1.0 → 2.0.1.1
raw patch · 2 files changed
+8/−1 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Control/Concurrent/Async.hs +3/−0
- async.cabal +5/−1
Control/Concurrent/Async.hs view
@@ -1,4 +1,7 @@ {-# LANGUAGE CPP, MagicHash, UnboxedTuples, RankNTypes #-}+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Trustworthy #-}+#endif {-# OPTIONS -Wall #-} -----------------------------------------------------------------------------
async.cabal view
@@ -22,6 +22,10 @@ threads that are automatically killed when their parent dies (see 'withAsync'). .+ Changes in 2.0.1.1:+ .+ * Safe Haskell support: @Control.Concurrent.Async@ is now @Trustworthy@+ . Changes in 2.0.1.0: . * Added a @Functor@ instance for @Async@@@ -32,7 +36,7 @@ . * Added @Concurrently@ (with @Applicative@ and @Alternative@ instances) -version: 2.0.1.0+version: 2.0.1.1 license: BSD3 license-file: LICENSE author: Simon Marlow