Skip to content

Commit bb12e9c

Browse files
author
Sergii Semenov
committed
Update version and release notes
1 parent 6cc9a79 commit bb12e9c

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

AsyncEnumerable.nuspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>AsyncEnumerator</id>
5-
<version>2.0.1</version>
5+
<version>2.1.0</version>
66
<authors>Serge Semenov</authors>
77
<licenseUrl>https://opensource.org/licenses/MIT</licenseUrl>
88
<projectUrl>https://github.com/tyrotoxin/AsyncEnumerable</projectUrl>
@@ -71,6 +71,7 @@ static void ConsumeNumbers()
7171
}</description>
7272
<summary>Introduces IAsyncEnumerable, IAsyncEnumerator, ForEachAsync(), and ParallelForEachAsync()</summary>
7373
<releaseNotes>
74+
2.1.0: New extension methods: Batch, UnionAll, Single, SingleOrDefault, DefaultIfEmpty, Cast.
7475
2.0.0: Revise design of the library: same features, but slight paradigm shift and interface breaking changes.
7576
1.5.0: Add support for .NET Standard, minor improvements.
7677
1.4.2: Add finalizer to AsyncEnumerator and call Dispose in ForEachAsync and ParallelForEachAsync extension methods.

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,9 @@ will just defeat the whole purpose of this library. This is the reason why such
311311

312312
## RELEASE NOTES
313313

314+
2.1.0: New extension methods: Batch, UnionAll, Single, SingleOrDefault, DefaultIfEmpty, Cast.
315+
Bug-fix: AsyncEnumerator.MoveNextAsync() must not succeed after Dispose().
316+
314317
2.0.1: Bug-fix: call onDispose when AsyncEnumerator is GC'ed but enumeration hasn't been started.
315318
Bug-fix: re-throw base exception instead of AggregateException in blocking synchronous methods.
316319

src/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
using System.Reflection;
33
using System.Runtime.InteropServices;
44

5-
[assembly: AssemblyVersion("2.0.1")]
6-
[assembly: AssemblyFileVersion("2.0.1")]
5+
[assembly: AssemblyVersion("2.1.0")]
6+
[assembly: AssemblyFileVersion("2.1.0")]
77
[assembly: AssemblyTitle("AsyncEnumerable")]
88
[assembly: AssemblyProduct("AsyncEnumerable")]
99
[assembly: AssemblyDescription("Asynchronous enumeration with IAsyncEnumerator and ForEachAsync()")]

0 commit comments

Comments
 (0)