File tree Expand file tree Collapse file tree
src/FSharp.Control.AsyncSeq Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111* Fix performance of mergeAll
1212* Add init, initInfinite
1313* Add initAsync, initInfiniteAsync, replicateInfinite
14+ * Add RequireQualifiedAccess to AsyncSeq
1415
1516### 1.15.0 - 30.03.2015
1617* Add AsyncSeq.getIterator (unblocks use of AsyncSeq in FSharpx.Async)
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ open System.Reflection
44[<assembly: AssemblyTitleAttribute( " FSharp.Control.AsyncSeq" ) >]
55[<assembly: AssemblyProductAttribute( " FSharp.Control.AsyncSeq" ) >]
66[<assembly: AssemblyDescriptionAttribute( " Asynchronous sequences for F#" ) >]
7- [<assembly: AssemblyVersionAttribute( " 1.16 .0" ) >]
8- [<assembly: AssemblyFileVersionAttribute( " 1.16 .0" ) >]
7+ [<assembly: AssemblyVersionAttribute( " 2.0 .0" ) >]
8+ [<assembly: AssemblyFileVersionAttribute( " 2.0 .0" ) >]
99do ()
1010
1111module internal AssemblyVersionInformation =
12- let [<Literal>] Version = " 1.16 .0"
12+ let [<Literal>] Version = " 2.0 .0"
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ type IAsyncEnumerable<'T> =
1717/// started to give an enumerator for pulling results asynchronously
1818type AsyncSeq < 'T > = IAsyncEnumerable< 'T>
1919
20+ [<RequireQualifiedAccess>]
2021module AsyncSeq =
2122 /// Creates an empty asynchronou sequence that immediately ends
2223 [<GeneralizableValueAttribute>]
You can’t perform that action at this time.
0 commit comments