Skip to content

Commit 8025c1b

Browse files
authored
Merge branch 'main' into chunkBySize
2 parents d9cca46 + 885cb70 commit 8025c1b

File tree

7 files changed

+12
-11
lines changed

7 files changed

+12
-11
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.github/workflows/*.lock.yml linguist-generated=true merge=ours

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
steps:
1111
- name: checkout-code
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
with:
1414
fetch-depth: 0
1515

@@ -28,7 +28,7 @@ jobs:
2828
steps:
2929
# checkout the code
3030
- name: checkout-code
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232
with:
3333
fetch-depth: 0
3434

.github/workflows/main.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
# checkout the code
1414
- name: checkout-code
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818
# setup dotnet based on global.json
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
# checkout the code
3333
- name: checkout-code
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535
with:
3636
fetch-depth: 0
3737
# setup dotnet based on global.json
@@ -44,7 +44,7 @@ jobs:
4444
shell: cmd
4545
run: ./build.cmd ci -release
4646
- name: Publish test results - release
47-
uses: dorny/test-reporter@v1
47+
uses: dorny/test-reporter@v2
4848
if: always()
4949
with:
5050
name: Report release tests

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
# checkout the code
1414
- name: checkout-code
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818
# setup dotnet based on global.json

.github/workflows/test-report.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
test-report-release:
1414
runs-on: windows-latest
1515
steps:
16-
- uses: dorny/test-reporter@v1
16+
- uses: dorny/test-reporter@v2
1717
with:
1818
artifact: test-results-release # artifact name
1919
name: Report release tests # Name of the check run which will be created
@@ -23,7 +23,7 @@ jobs:
2323
test-report-debug:
2424
runs-on: windows-latest
2525
steps:
26-
- uses: dorny/test-reporter@v1
26+
- uses: dorny/test-reporter@v2
2727
with:
2828
artifact: test-results-debug # artifact name
2929
name: Report debug tests # Name of the check run which will be created

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
steps:
1010
# checkout the code
1111
- name: checkout-code
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
with:
1414
fetch-depth: 0
1515

@@ -39,7 +39,7 @@ jobs:
3939
steps:
4040
# checkout the code
4141
- name: checkout-code
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v5
4343
with:
4444
fetch-depth: 0
4545

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ The `TaskSeq` project already has a wide array of functions and functionalities,
229229
- [ ] Make the tasks cancellable with token (see [#133]). **PLANNED FOR 0.5-alpha**
230230
- [ ] Support `ConfiguredCancelableAsyncEnumerable` (see [#167]). **PLANNED FOR 0.5-alpha**
231231
- [ ] Interop with `cancellableTask` and `valueTask` from [`IcedTasks`][24]
232-
- [ ] Interop with `AsyncSeq`.
232+
- [x] Interop with `AsyncSeq` (implemented in `FSharp.Control.AsyncSeq` package).
233233
- [ ] (maybe) Support any awaitable type in the function lib (that is: where a `Task` is required, accept a `ValueTask` and `Async` as well)
234234
- [ ] Add `TaskEx` functionality (separate lib). **DISCUSSION**
235235
- [ ] Move documentation to <https://fsprojects.github.io>

0 commit comments

Comments
 (0)