Skip to content

Commit b6cded8

Browse files
committed
Fix #20 - Add RequireQualifiedAccess to AsyncSeq
1 parent f33d604 commit b6cded8

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

RELEASE_NOTES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
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)

src/FSharp.Control.AsyncSeq/AssemblyInfo.fs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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")>]
99
do ()
1010

1111
module internal AssemblyVersionInformation =
12-
let [<Literal>] Version = "1.16.0"
12+
let [<Literal>] Version = "2.0.0"

src/FSharp.Control.AsyncSeq/AsyncSeq.fsi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ type IAsyncEnumerable<'T> =
1717
/// started to give an enumerator for pulling results asynchronously
1818
type AsyncSeq<'T> = IAsyncEnumerable<'T>
1919

20+
[<RequireQualifiedAccess>]
2021
module AsyncSeq =
2122
/// Creates an empty asynchronou sequence that immediately ends
2223
[<GeneralizableValueAttribute>]

0 commit comments

Comments
 (0)