Skip to content

Commit 4d8922c

Browse files
committed
Update verision, make Nil/Cons internal
1 parent 1f27359 commit 4d8922c

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

RELEASE_NOTES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
### 1.12.2 - 27.03.2015
1+
### 1.13 - 27.03.2015
22
* Renamed to FSharp.Control.AsyncSeq
3+
* Remove surface area
34

45
### 1.12.1 - 27.03.2015
56
* Added Async.bindChoice, Async.ParallelIgnore, AsyncSeq.zipWithAsync, AsyncSeq.zappAsync, AsyncSeq.threadStateAsync, AsyncSeq.merge, AsyncSeq.traverseOptionAsync, AsyncSeq.traverseChoiceAsync

src/FSharp.Control.AsyncSeq/AsyncSeq.fs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ type AsyncSeq<'T> = Async<AsyncSeqInner<'T>>
1919

2020
/// The interanl type that represents a value returned as a result of
2121
/// evaluating a step of an asynchronous sequence
22-
and AsyncSeqInner<'T> =
22+
and AsyncSeqInner<'T> =
23+
internal
2324
| Nil
2425
| Cons of 'T * AsyncSeq<'T>
2526

0 commit comments

Comments
 (0)