Skip to content

Commit 6661996

Browse files
Prepare release 4.6.0 — fix merge conflict, bump version.props 4.5.0 → 4.6.0
- Fix merge conflict in RELEASE_NOTES.md (4.6.0 section had unresolved conflict markers from concurrent PRs #261 and #264 merging into main) - Bump version.props from 4.5.0 to 4.6.0 to cover all unreleased additions merged since the 4.5.0 version bump: - PR #261: findIndex, tryFindIndex, findIndexAsync, tryFindIndexAsync, sortWith - PR #264: isEmpty, tryHead, except All 287 tests pass. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 8ee2296 commit 6661996

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

RELEASE_NOTES.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
### 4.6.0
22

3-
<<<<<<< repo-assist/improve-isempty-tryhead-except-2471744-646c6897389cdfcb
43
* Added `AsyncSeq.isEmpty` — returns `true` if the sequence contains no elements; short-circuits after the first element, mirroring `Seq.isEmpty`.
54
* Added `AsyncSeq.tryHead` — returns the first element as `option`, or `None` if the sequence is empty, mirroring `Seq.tryHead` (equivalent to the existing `AsyncSeq.tryFirst`).
65
* Added `AsyncSeq.except` — returns a new sequence excluding all elements present in a given collection, mirroring `Seq.except`.
7-
=======
86
* Added `AsyncSeq.findIndex` — returns the index of the first element satisfying a predicate; raises `KeyNotFoundException` if no match, mirroring `Seq.findIndex`.
97
* Added `AsyncSeq.tryFindIndex` — returns the index of the first element satisfying a predicate as `option`, or `None` if not found, mirroring `Seq.tryFindIndex`.
108
* Added `AsyncSeq.findIndexAsync` — async-predicate variant of `AsyncSeq.findIndex`; raises `KeyNotFoundException` if no match.
119
* Added `AsyncSeq.tryFindIndexAsync` — async-predicate variant of `AsyncSeq.tryFindIndex`; returns `option`.
1210
* Added `AsyncSeq.sortWith` — sorts the sequence using a custom comparison function, returning an array, mirroring `Seq.sortWith`.
13-
>>>>>>> main
1411

1512
### 4.5.0
1613

version.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>4.5.0</Version>
3+
<Version>4.6.0</Version>
44
</PropertyGroup>
55
</Project>

0 commit comments

Comments
 (0)