Skip to content

Commit 79af35c

Browse files
Updated NuSpec for v2.1.1
1 parent fe2e73a commit 79af35c

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

Src/AsyncAwaitBestPractices.MVVM.nuspec

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata minClientVersion="2.5">
44
<id>AsyncAwaitBestPractices.MVVM</id>
5-
<version>2.1.0</version>
5+
<version>2.1.1</version>
66
<title>Task Extensions for MVVM</title>
77
<authors>Brandon Minnick, John Thiriet</authors>
88
<owners>Brandon Minnick</owners>
@@ -14,14 +14,11 @@
1414
<summary>Includes AsyncCommand and IAsyncCommand which allows ICommand to safely be used asynchronously with Task.</summary>
1515
<tags>task,fire and forget, threading, extensions, system.threading.tasks,async,await</tags>
1616
<dependencies>
17-
<dependency id="AsyncAwaitBestPractices" version="2.1.0" />
17+
<dependency id="AsyncAwaitBestPractices" version="2.1.1" />
1818
</dependencies>
1919
<releaseNotes>
2020
New In This Release:
21-
- IAsyncCommand&lt;T&gt;
22-
- Breaking Change: The constructor for AsyncCommand now requires the parameter `Func&lt;Task&gt; execute` to be non-null
23-
- Breaking Change: The constructor for AsyncCommand&lt;T&gt; now requires the parameter `Funct&lt;T, Task&gt; execute` to be non-null
24-
- Breaking Change: IAsyncCommand.Execute(object parameter) has been changed to IAsyncCommand.Execute(). If a parameter is required, use IAsyncCommand&lt;T&gt;.Execute(T parameter).
21+
- Performance improvements to SafeFireAndForget
2522
</releaseNotes>
2623
<copyright>Copyright (c) 2018 Brandon Minnick</copyright>
2724
</metadata>

Src/AsyncAwaitBestPractices.nuspec

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata minClientVersion="2.5">
44
<id>AsyncAwaitBestPractices</id>
5-
<version>2.1.0</version>
5+
<version>2.1.1</version>
66
<title>Task Extensions for System.Threading.Tasks</title>
77
<authors>Brandon Minnick, John Thiriet</authors>
88
<owners>Brandon Minnick</owners>
@@ -19,8 +19,7 @@
1919
<tags>task,fire and forget, threading, extensions, system.threading.tasks,async,await</tags>
2020
<releaseNotes>
2121
New In This Release:
22-
- WeakEventManager.AddEventHandler can now be used with Delegate
23-
- WeakEventManager.RemoveEventHandler can now be used with Delegate
22+
- Performance improvements to SafeFireAndForget
2423
</releaseNotes>
2524
<copyright>Copyright (c) 2018 Brandon Minnick</copyright>
2625
</metadata>

0 commit comments

Comments
 (0)