Skip to content

Commit d0f0c56

Browse files
authored
Merge branch 'main' into repo-assist/fix-async-awaittask-129-2026-03-2c2c8da1e1b359c3
2 parents baa0ab2 + 83b1340 commit d0f0c56

File tree

11 files changed

+449
-16
lines changed

11 files changed

+449
-16
lines changed

.github/aw/actions-lock.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99
"repo": "github/gh-aw/actions/setup",
1010
"version": "v0.56.2",
1111
"sha": "f1073c5498ee46fec1530555a7c953445417c69b"
12+
},
13+
"github/gh-aw/actions/setup@v0.57.2": {
14+
"repo": "github/gh-aw/actions/setup",
15+
"version": "v0.57.2",
16+
"sha": "32b3a711a9ee97d38e3989c90af0385aff0066a7"
1217
}
1318
}
1419
}

.github/workflows/repo-assist.lock.yml

Lines changed: 21 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/repo-assist.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ description: |
1414
Always polite, constructive, and mindful of the project's goals.
1515
1616
on:
17-
schedule: every 6h
17+
schedule: every 48 hours
1818
workflow_dispatch:
1919
slash_command:
2020
name: repo-assist

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ The `TaskSeq` project already has a wide array of functions and functionalities,
212212
- [x] `forall` / `forallAsync` (see [#240])
213213
- [x] `skip` / `drop` / `truncate` / `take` (see [#209])
214214
- [x] `chunkBySize` / `windowed` (see [#258])
215-
- [ ] `compareWith`
215+
- [x] `compareWith` / `compareWithAsync`
216216
- [ ] `distinct`
217217
- [ ] `exists2` / `map2` / `fold2` / `iter2` and related '2'-functions
218218
- [ ] `mapFold`
@@ -267,7 +267,7 @@ This is what has been implemented so far, is planned or skipped:
267267
| ✅ [#258][] | `chunkBySize` | `chunkBySize` | | |
268268
| ✅ [#11][] | `collect` | `collect` | `collectAsync` | |
269269
| ✅ [#11][] | | `collectSeq` | `collectSeqAsync` | |
270-
| | `compareWith` | `compareWith` | `compareWithAsync` | |
270+
| ✅ | `compareWith` | `compareWith` | `compareWithAsync` | |
271271
| ✅ [#69][] | `concat` | `concat` | | |
272272
| ✅ [#237][]| `concat` (list) | `concat` (list) | | |
273273
| ✅ [#237][]| `concat` (array) | `concat` (array) | | |

release-notes.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ Release notes:
33

44
0.6.0
55
- fixes: async { for item in taskSeq do ... } no longer wraps exceptions in AggregateException, #129
6+
- adds TaskSeq.compareWith and TaskSeq.compareWithAsync
67
- adds TaskSeq.scan and TaskSeq.scanAsync, #289
78
- adds TaskSeq.pairwise, #289
89
- adds TaskSeq.groupBy and TaskSeq.groupByAsync, #289

src/FSharp.Control.TaskSeq.Test/FSharp.Control.TaskSeq.Test.fsproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
<Compile Include="TaskSeq.ToXXX.Tests.fs" />
5959
<Compile Include="TaskSeq.UpdateAt.Tests.fs" />
6060
<Compile Include="TaskSeq.Zip.Tests.fs" />
61+
<Compile Include="TaskSeq.CompareWith.Tests.fs" />
6162
<Compile Include="TaskSeq.ChunkBySize.Tests.fs" />
6263
<Compile Include="TaskSeq.Windowed.Tests.fs" />
6364
<Compile Include="TaskSeq.Tests.CE.fs" />

0 commit comments

Comments
 (0)