From a7138bc87df5e42be65e6539db24369b56be6e37 Mon Sep 17 00:00:00 2001 From: Don Syme Date: Sat, 14 Mar 2026 20:16:44 +0000 Subject: [PATCH] release version 1.0.0 --- Version.props | 2 +- release-notes.txt | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Version.props b/Version.props index afaaaea..c424649 100644 --- a/Version.props +++ b/Version.props @@ -1,6 +1,6 @@ - 0.6.0 + 1.0.0 \ No newline at end of file diff --git a/release-notes.txt b/release-notes.txt index fe22bfe..db1455a 100644 --- a/release-notes.txt +++ b/release-notes.txt @@ -1,6 +1,9 @@ Release notes: +1.0.0 + - adds TaskSeq.withCancellation, #167 + 0.7.0 - performance: TaskSeq.exists, existsAsync, contains no longer allocate an intermediate Option value - test: adds 67 tests for TaskSeq.lengthOrMax (previously untested) @@ -10,7 +13,6 @@ Release notes: - adds TaskSeq.unfold and TaskSeq.unfoldAsync, #289 - adds TaskSeq.chunkBySize (closes #258) and TaskSeq.windowed, #289 - fixes: CancellationToken passed to GetAsyncEnumerator is now honored in MoveNextAsync, #179 - - adds TaskSeq.withCancellation, #167 0.6.0 - fixes: async { for item in taskSeq do ... } no longer wraps exceptions in AggregateException, #129