Skip to content

Commit 4ae1ade

Browse files
committed
RELEASE_NOTES
1 parent c0d20bb commit 4ae1ade

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

RELEASE_NOTES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#### 2.0.0 - 22.08.2016
2+
* Added Add Task related helper functions - https://github.com/fsprojects/FSharpx.Extras/pull/339
23
* New Enum convenience methods - https://github.com/fsprojects/FSharpx.Extras/pull/327
34
* BREAKING: Deprecated .NET 4.0 version
45
* BREAKING: Removed all functions that were marked as obsolete. This includes JSON API

src/FSharpx.Extras/ComputationExpressions/Monad.fs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1115,7 +1115,6 @@ module Task =
11151115
return Choice2Of2 e
11161116
}
11171117

1118-
#if !NET40
11191118
/// Creates a task that executes all the given tasks.
11201119
let Parallel (tasks : seq<unit -> Task<'a>>) =
11211120
tasks
@@ -1138,5 +1137,4 @@ module Task =
11381137
}
11391138
tasks
11401139
|> Seq.map throttleTask
1141-
|> Parallel
1142-
#endif
1140+
|> Parallel

0 commit comments

Comments
 (0)