We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0d20bb commit 4ae1adeCopy full SHA for 4ae1ade
2 files changed
RELEASE_NOTES.md
@@ -1,4 +1,5 @@
1
#### 2.0.0 - 22.08.2016
2
+* Added Add Task related helper functions - https://github.com/fsprojects/FSharpx.Extras/pull/339
3
* New Enum convenience methods - https://github.com/fsprojects/FSharpx.Extras/pull/327
4
* BREAKING: Deprecated .NET 4.0 version
5
* BREAKING: Removed all functions that were marked as obsolete. This includes JSON API
src/FSharpx.Extras/ComputationExpressions/Monad.fs
@@ -1115,7 +1115,6 @@ module Task =
1115
return Choice2Of2 e
1116
}
1117
1118
-#if !NET40
1119
/// Creates a task that executes all the given tasks.
1120
let Parallel (tasks : seq<unit -> Task<'a>>) =
1121
tasks
@@ -1138,5 +1137,4 @@ module Task =
1138
1137
1139
1140
|> Seq.map throttleTask
1141
- |> Parallel
1142
-#endif
+ |> Parallel
0 commit comments