Skip to content

Commit faf1841

Browse files
committed
Update readme.md, package info and release notes
1 parent 708a4b6 commit faf1841

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,8 +319,8 @@ This is what has been implemented so far, is planned or skipped:
319319
| ✅ [#90][] | `singleton` | `singleton` | | |
320320
| ✅ [#209][]| `skip` | `skip` | | |
321321
| ✅ [#209][]| | `drop` | | |
322-
| | `skipWhile` | `skipWhile` | `skipWhileAsync` | |
323-
| | | `skipWhileInclusive` | `skipWhileInclusiveAsync` | |
322+
| ✅ [#219][]| `skipWhile` | `skipWhile` | `skipWhileAsync` | |
323+
| ✅ [#219][]| | `skipWhileInclusive` | `skipWhileInclusiveAsync` | |
324324
| ❓ | `sort` | | | [note #1](#note1 "These functions require a form of pre-materializing through 'TaskSeq.cache', similar to the approach taken in the corresponding 'Seq' functions. It doesn't make much sense to have a cached async sequence. However, 'AsyncSeq' does implement these, so we'll probably do so eventually as well.") |
325325
| ❓ | `sortBy` | | | [note #1](#note1 "These functions require a form of pre-materializing through 'TaskSeq.cache', similar to the approach taken in the corresponding 'Seq' functions. It doesn't make much sense to have a cached async sequence. However, 'AsyncSeq' does implement these, so we'll probably do so eventually as well.") |
326326
| ❓ | `sortByAscending` | | | [note #1](#note1 "These functions require a form of pre-materializing through 'TaskSeq.cache', similar to the approach taken in the corresponding 'Seq' functions. It doesn't make much sense to have a cached async sequence. However, 'AsyncSeq' does implement these, so we'll probably do so eventually as well.") |
@@ -603,6 +603,7 @@ module TaskSeq =
603603
[#133]: https://github.com/fsprojects/FSharp.Control.TaskSeq/issues/133
604604
[#209]: https://github.com/fsprojects/FSharp.Control.TaskSeq/issues/209
605605
[#217]: https://github.com/fsprojects/FSharp.Control.TaskSeq/issues/217
606+
[#219]: https://github.com/fsprojects/FSharp.Control.TaskSeq/issues/219
606607

607608
[issues]: https://github.com/fsprojects/FSharp.Control.TaskSeq/issues
608609
[nuget]: https://www.nuget.org/packages/FSharp.Control.TaskSeq/

assets/nuget-package-readme.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,8 +199,8 @@ This is what has been implemented so far, is planned or skipped:
199199
| ✅ [#90][] | `singleton` | `singleton` | | |
200200
| ✅ [#209][]| `skip` | `skip` | | |
201201
| ✅ [#209][]| | `drop` | | |
202-
| | `skipWhile` | `skipWhile` | `skipWhileAsync` | |
203-
| | | `skipWhileInclusive` | `skipWhileInclusiveAsync` | |
202+
| ✅ [#219][]| `skipWhile` | `skipWhile` | `skipWhileAsync` | |
203+
| ✅ [#219][]| | `skipWhileInclusive` | `skipWhileInclusiveAsync` | |
204204
| ❓ | `sort` | | | [note #1](#note1 "These functions require a form of pre-materializing through 'TaskSeq.cache', similar to the approach taken in the corresponding 'Seq' functions. It doesn't make much sense to have a cached async sequence. However, 'AsyncSeq' does implement these, so we'll probably do so eventually as well.") |
205205
| ❓ | `sortBy` | | | [note #1](#note1 "These functions require a form of pre-materializing through 'TaskSeq.cache', similar to the approach taken in the corresponding 'Seq' functions. It doesn't make much sense to have a cached async sequence. However, 'AsyncSeq' does implement these, so we'll probably do so eventually as well.") |
206206
| ❓ | `sortByAscending` | | | [note #1](#note1 "These functions require a form of pre-materializing through 'TaskSeq.cache', similar to the approach taken in the corresponding 'Seq' functions. It doesn't make much sense to have a cached async sequence. However, 'AsyncSeq' does implement these, so we'll probably do so eventually as well.") |
@@ -308,3 +308,4 @@ _The motivation for `readOnly` in `Seq` is that a cast from a mutable array or l
308308
[#126]: https://github.com/fsprojects/FSharp.Control.TaskSeq/pull/126
309309
[#209]: https://github.com/fsprojects/FSharp.Control.TaskSeq/issues/209
310310
[#217]: https://github.com/fsprojects/FSharp.Control.TaskSeq/issues/217
311+
[#219]: https://github.com/fsprojects/FSharp.Control.TaskSeq/issues/219

release-notes.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ Release notes:
33
0.4.x (unreleased)
44
- overhaul all doc comments, add exceptions, improve IDE quick-info experience, #136
55
- new surface area functions, fixes #208:
6-
* TaskSeq.take, TaskSeq.skip, #209
7-
* TaskSeq.truncate, TaskSeq.drop, #209
8-
* TaskSeq.where, TaskSeq.whereAsync, #217
6+
* TaskSeq.take, skip, #209
7+
* TaskSeq.truncate, drop, #209
8+
* TaskSeq.where, whereAsync, #217
9+
* TaskSeq.skipWhile, skipWhileInclusive, skipWhileAsync, skipWhileInclusiveAsync, #219
910

1011
- Performance: less thread hops with 'StartImmediateAsTask' instead of 'StartAsTask', fixes #135
1112
- BINARY INCOMPATIBILITY: 'TaskSeq' module is now static members on 'TaskSeq<_>', fixes #184

0 commit comments

Comments
 (0)